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() }