diff --git a/front/src/components/CategoryPreview.tsx b/front/src/components/CategoryPreview.tsx index d72cb94..d711b61 100644 --- a/front/src/components/CategoryPreview.tsx +++ b/front/src/components/CategoryPreview.tsx @@ -1,7 +1,7 @@ import { StoriesPreview } from '.' import { UserCategoriesNames, UserCategory, composeUserCategoriesFilters } from '../assets/userCategories' import { useAnnouncements } from '../hooks/api' -import { gotError } from '../hooks/useFetch' +import { gotError, gotResponse } from '../hooks/useFetch' type CategoryPreviewProps = { category: UserCategory, @@ -15,8 +15,12 @@ function CategoryPreview({ category }: CategoryPreviewProps) {
{announcements.error}
- ) : (announcements.loading ? 'Загрузка...' : -Адрес: {fallbackError(address)}
+Адрес: {gotResponse(address) ? fallbackError(address) : 'Загрузка...'}
Загрузка...
-Загрузка...
+Выбран пункт сбора мусора на { trashboxes.data[selectedTrashbox.index].Address } с категорией {selectedTrashbox.category}
diff --git a/front/src/pages/HomePage.tsx b/front/src/pages/HomePage.tsx index 9526a8c..ed09a45 100644 --- a/front/src/pages/HomePage.tsx +++ b/front/src/pages/HomePage.tsx @@ -26,16 +26,19 @@ function generateStories(announcements: Announcement[], refresh: () => void): St } function fallbackGenerateStories(announcements: UseFetchReturn