refactor: correct navigation config

This commit is contained in:
2023-06-02 22:33:06 +01:00
parent 4d10eba0e7
commit fe8713b966
2 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ const en = {
dashboard: 'Dashboard',
favorites: 'Favorites',
history: 'History',
my_profile: 'My profile',
profile: 'My profile',
};
export default en;

View File

@@ -26,11 +26,11 @@ const navigationConfig = [
url: 'history',
},
{
id: 'my-profile',
title: en.my_profile,
id: 'profile',
title: en.profile,
type: 'item',
icon: 'heroicons-outline:user-circle',
url: 'my-profile',
url: 'profile',
},
];