From 38c11f124e2235bc32de1e469b00ccaa22467a7e Mon Sep 17 00:00:00 2001 From: MAZE Date: Sun, 11 Feb 2024 19:52:10 +0330 Subject: [PATCH] fix: add key to categories --- src/components/categories/categories.tsx | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/components/categories/categories.tsx b/src/components/categories/categories.tsx index 857751a..b8ee906 100644 --- a/src/components/categories/categories.tsx +++ b/src/components/categories/categories.tsx @@ -13,15 +13,11 @@ export function Categories({ categories }: CategoriesProps) { return ( {categories.map((category, index) => ( - <> - +
+ {index === 3 && } - +
))}
);