From 4f61e921cd5a82146a4be10ab2798fc50964c24b Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Tue, 20 Jan 2026 19:57:26 +0100 Subject: [PATCH] fixes #2526 --- src/components/resume/shared/page-section.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/resume/shared/page-section.tsx b/src/components/resume/shared/page-section.tsx index 0a0bba436..fd83f4688 100644 --- a/src/components/resume/shared/page-section.tsx +++ b/src/components/resume/shared/page-section.tsx @@ -21,16 +21,16 @@ export function PageSection({ type, className, children }
{section.title || getSectionTitle(type)}
-
    {items.map((item) => ( -
  • +
    {children(item)} -
  • + ))} -
+
); }