From 3aefe75c28d15e4fd9384254edbe56b87db7ba6f Mon Sep 17 00:00:00 2001 From: FlorianSpeicher Date: Tue, 3 Jun 2025 22:36:06 +0200 Subject: [PATCH] Fixed i18n. --- 01-frontend/src/pages/Home.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-frontend/src/pages/Home.tsx b/01-frontend/src/pages/Home.tsx index 1b7e6b2..bbf4513 100644 --- a/01-frontend/src/pages/Home.tsx +++ b/01-frontend/src/pages/Home.tsx @@ -18,7 +18,7 @@ export default function Home() { const [searchQuery, setSearchQuery] = useState(null); const categoriesFilter = useMemo(() => [ - { value: "", label: t("all") }, + { value: "", label: t("allCategories") }, { value: "Seeds", label: t("seeds") }, { value: "GardenSupplies", label: t("gardenSupplies") }, { value: "TechnicalComponents", label: t("technicalComponents") },