From 3c8c0e7d54bdab23564039b468cd9df47da68a12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Marseault?= <22910497+Larsluph@users.noreply.github.com> Date: Sun, 5 Nov 2023 01:09:47 +0100 Subject: [PATCH] Update App.vue --- src/App.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/App.vue b/src/App.vue index 53338c07..4eb00ae8 100644 --- a/src/App.vue +++ b/src/App.vue @@ -14,7 +14,6 @@ import { useVueTorrentStore } from '@/stores/vuetorrent' import { computed, onBeforeMount, watch } from 'vue' import { useRoute, useRouter } from 'vue-router' -const router = useRouter() const route = useRoute() const authStore = useAuthStore() @@ -26,8 +25,6 @@ const navbarStore = useNavbarStore() const preferencesStore = usePreferenceStore() const vuetorrentStore = useVueTorrentStore() -const onLoginPage = computed(() => route.name === 'login') - const checkAuthentication = async () => { await authStore.updateAuthStatus() }