diff --git a/src/stores/settings/appearance.js b/src/stores/settings/appearance.js index 79834ebd..3d9939eb 100644 --- a/src/stores/settings/appearance.js +++ b/src/stores/settings/appearance.js @@ -90,8 +90,8 @@ export const useAppearanceSettingsStore = defineStore( const isSideBarTabShow = computed(() => { const currentRouteName = router.currentRoute.value?.name; return !( - currentRouteName === 'friendLocation' || - currentRouteName === 'friendList' || + currentRouteName === 'friends-locations' || + currentRouteName === 'friend-list' || currentRouteName === 'charts' ); });