|
@@ -118,7 +118,7 @@ const handleLogout = async () => {
|
|
|
const items = ref([
|
|
|
{ title: t('enterprise.personalInformationSettings'), icon: 'mdi-account-cog', change: () => router.push({ path: '/enterprise/informationSettings' }) },
|
|
|
{ title: t('setting.switchToJobSeeker'), icon: 'mdi-swap-horizontal', change: handleLogout },
|
|
|
- { title: t('enterprise.account.myAccount'), icon: 'mdi-account', change: router.push({ path: '/enterprise/myAccount' }) },
|
|
|
+ { title: t('enterprise.account.myAccount'), icon: 'mdi-account', change: () => router.push({ path: '/enterprise/myAccount' }) },
|
|
|
{ title: t('setting.logOut'), icon: 'mdi-logout', change: handleLogout }
|
|
|
])
|
|
|
|