From 35f1c82168291944170368fe295fadd5eb9a6290 Mon Sep 17 00:00:00 2001 From: Guus van Meerveld Date: Sun, 10 Mar 2024 01:36:46 +0100 Subject: [PATCH] fix: missing key on list in cv --- src/app/cv/Cv.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/cv/Cv.tsx b/src/app/cv/Cv.tsx index 2161248..4e03ff7 100644 --- a/src/app/cv/Cv.tsx +++ b/src/app/cv/Cv.tsx @@ -10,6 +10,8 @@ import { Component } from "@typings/component"; import humanizeDuration from "humanize-duration"; import NextImage from "next/image"; +import { Fragment } from "react"; + import CvProps, { Education as EducationProps, Skill as SkillProps @@ -112,6 +114,7 @@ export const Cv: Component<{ data: CvProps }> = ({ data }) => { {data.programmingLanguages.map((skill) => ( ))} + @@ -120,13 +123,10 @@ export const Cv: Component<{ data: CvProps }> = ({ data }) => { {data.education.map((education) => { return ( - <> + - - + + ); })}