diff --git a/src/app/dashboard/profile-sections/page.tsx b/src/app/dashboard/profile-sections/page.tsx index c941262..81b4fcf 100644 --- a/src/app/dashboard/profile-sections/page.tsx +++ b/src/app/dashboard/profile-sections/page.tsx @@ -34,6 +34,7 @@ export default function ProfileSectionsPage() { icon: '', isActive: true, isGlobal: false, + isRepeatable: false, sortOrder: 0, }); @@ -65,6 +66,7 @@ export default function ProfileSectionsPage() { icon: '', isActive: true, isGlobal: false, + isRepeatable: false, sortOrder: 0, }); setModalError(''); @@ -79,6 +81,7 @@ export default function ProfileSectionsPage() { icon: section.icon || '', isActive: section.isActive, isGlobal: section.isGlobal, + isRepeatable: section.isRepeatable || false, sortOrder: section.sortOrder, }); setModalError(''); @@ -306,6 +309,11 @@ export default function ProfileSectionsPage() { > {section.isGlobal ? 'Global' : 'Specific'} + {section.isRepeatable && ( + + Repeatable + + )}