refactor: remove completed status from profile menu items in StaffProfilePage

This commit is contained in:
Achintha Isuru
2026-01-30 14:41:39 -05:00
parent 6773ddd27d
commit f319ce1776

View File

@@ -124,19 +124,16 @@ class StaffProfilePage extends StatelessWidget {
ProfileMenuItem(
icon: UiIcons.user,
label: i18n.menu_items.personal_info,
completed: profile.phone != null,
onTap: () => Modular.to.pushPersonalInfo(),
),
ProfileMenuItem(
icon: UiIcons.phone,
label: i18n.menu_items.emergency_contact,
completed: false,
onTap: () => Modular.to.pushEmergencyContact(),
),
ProfileMenuItem(
icon: UiIcons.briefcase,
label: i18n.menu_items.experience,
completed: false,
onTap: () => Modular.to.pushExperience(),
),
],
@@ -152,7 +149,6 @@ class StaffProfilePage extends StatelessWidget {
ProfileMenuItem(
icon: UiIcons.file,
label: i18n.menu_items.tax_forms,
completed: false,
onTap: () => Modular.to.pushTaxForms(),
),
],