diff --git a/src/App.vue b/src/App.vue index b015a4376..fc6240200 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,9 +5,9 @@ >
- - - + + + @@ -33,7 +33,7 @@ import { type LocaleCodes } from '@/types' import { useIdle } from '@vueuse/core' const loading = ref(true) -const transitionName: Ref = ref(null) +const transitionName: Ref = ref('no-transition') const route = useRoute() const polling = ref() @@ -51,7 +51,7 @@ watch(route, (to, from) => { if (to.path.includes('/settings') || from.path.includes('/settings')) { transitionName.value = 'zoom' } else { - transitionName.value = null + transitionName.value = 'no-transition' } }) onMounted(() => {