From 34c0e601736b5504feba2d63315ccd3edc057a9a Mon Sep 17 00:00:00 2001 From: Bochkovskyi Date: Sun, 11 Feb 2024 19:20:45 +0200 Subject: [PATCH] update return statement --- src/components/sections/projects/project-card.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/sections/projects/project-card.tsx b/src/components/sections/projects/project-card.tsx index 0efd674..408ff88 100644 --- a/src/components/sections/projects/project-card.tsx +++ b/src/components/sections/projects/project-card.tsx @@ -1,5 +1,3 @@ -// TODO: Add projects individual routes - import Card from '@/components/ui/card' import Chips from '@/components/ui/chips/chips' import ChipsItem from '@/components/ui/chips/chips-item' @@ -40,11 +38,13 @@ const ProjectCard: FC = ({ {title || slug} -

- {technologies && ( + {body && ( +

+ )} + {!!technologies.length && ( {technologies.map((technology) => (