From 3bdc8df61f5054894d065ba246ad6771ed3f3d91 Mon Sep 17 00:00:00 2001 From: Natsumi Date: Mon, 12 Jan 2026 10:15:42 +1300 Subject: [PATCH] Fix router name --- src/stores/settings/appearance.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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' ); });