diff --git a/frontend/components/profile/ProfileSection.vue b/frontend/components/profile/ProfileSection.vue index b692176..1ed490d 100644 --- a/frontend/components/profile/ProfileSection.vue +++ b/frontend/components/profile/ProfileSection.vue @@ -3,24 +3,36 @@ type Props = { title: string; + borderLess?: boolean; }; // props -defineProps(); +withDefaults(defineProps(), { + borderLess: false, +});