hide sidebar when friend location tab is opened

This commit is contained in:
pa
2025-11-01 18:44:15 +09:00
committed by Natsumi
parent 365fd7a9a8
commit bdf6a76597
+1 -1
View File
@@ -82,7 +82,7 @@ export const useAppearanceSettingsStore = defineStore(
const isSideBarTabShow = computed(() => { const isSideBarTabShow = computed(() => {
const currentRouteName = router.currentRoute.value?.name; const currentRouteName = router.currentRoute.value?.name;
return !( return !(
currentRouteName === 'friend' || currentRouteName === 'friendLocation' ||
currentRouteName === 'friendList' || currentRouteName === 'friendList' ||
currentRouteName === 'charts' currentRouteName === 'charts'
); );