Fix router name

This commit is contained in:
Natsumi
2026-01-12 10:15:42 +13:00
parent 637201c8f7
commit 3bdc8df61f

View File

@@ -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'
);
});