From 53b1c4d82532e08024a925c6aa734d89a077db29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20GUEZO?= Date: Mon, 23 Mar 2026 00:06:04 +0100 Subject: [PATCH] fix(Skills): 'Element[]' is missing error resolved --- app/components/sections/Skills.tsx | 52 ++++++++++++++++-------------- 1 file changed, 27 insertions(+), 25 deletions(-) diff --git a/app/components/sections/Skills.tsx b/app/components/sections/Skills.tsx index 1c8386f..c6aab78 100644 --- a/app/components/sections/Skills.tsx +++ b/app/components/sections/Skills.tsx @@ -20,34 +20,36 @@ export default function Skills({ id, open, onClose }: SkillsProps) { return (
- {skillsData.map((section, i) => ( -
-
-

+
+

{t(section.title)}:

-
- {section.tags.map((tag, j) => { - const Icon = (SiIcons as Record)[tag.icon]; - return ( - -
- {Icon && } - {tag.name} -
-
- ); - })} +
+ {section.tags.map((tag, j) => { + const Icon = (SiIcons as Record)[tag.icon]; + return ( + +
+ {Icon && } + {tag.name} +
+
+ ); + })} +
-

- ))} + ))} +
);