diff --git a/Frontend/lib/mih_packages/mzansi_profile/personal_profile/mzansi_profile.dart b/Frontend/lib/mih_packages/mzansi_profile/personal_profile/mzansi_profile.dart index 40e9cc64..f721df6e 100644 --- a/Frontend/lib/mih_packages/mzansi_profile/personal_profile/mzansi_profile.dart +++ b/Frontend/lib/mih_packages/mzansi_profile/personal_profile/mzansi_profile.dart @@ -26,6 +26,7 @@ class _MzansiProfileState extends State { appActionButton: getAction(), appTools: getTools(), appBody: getToolBody(), + appToolTitles: getToolTitle(), selectedbodyIndex: _selcetedIndex, onIndexChange: (newValue) { setState(() { @@ -74,4 +75,12 @@ class _MzansiProfileState extends State { )); return toolBodies; } + + List getToolTitle() { + List toolTitles = [ + "Profile", + "Settings", + ]; + return toolTitles; + } }