fix(get-section-component): display titles for summary-type custom sections (#2744)

This commit is contained in:
Amruth Pillai
2026-02-24 10:48:44 +01:00
committed by GitHub
parent e9fa161148
commit 9b29a44429
@@ -174,7 +174,7 @@ export function getSectionComponent(
return (
<section className={cn(`page-section page-section-custom page-section-${id}`, sectionClassName)}>
{customSection.type !== "summary" && customSection.type !== "cover-letter" && (
{customSection.type !== "cover-letter" && (
<h6 className="mb-1.5 text-(--page-primary-color)">{customSection.title}</h6>
)}