diff --git a/app/components/CookieConsentBanner.vue b/app/components/CookieConsentBanner.vue index 3f3874f..2e6cdd1 100644 --- a/app/components/CookieConsentBanner.vue +++ b/app/components/CookieConsentBanner.vue @@ -110,7 +110,7 @@ watch( } ); -const restrictedRoute = computed(() => route.path.startsWith('/classroom') || route.path.startsWith('/pm')); +const restrictedRoute = computed(() => route.path.startsWith('/classroom') || route.path.startsWith('/pm') || route.path.startsWith('/login')); const showManageButton = computed(() => hasConsent.value && !isDialogVisible.value && !restrictedRoute.value); @@ -427,4 +427,5 @@ const openManager = () => { white-space: nowrap; border: 0; } + diff --git a/app/pages/login.vue b/app/pages/login.vue index f24a126..cfc1d47 100644 --- a/app/pages/login.vue +++ b/app/pages/login.vue @@ -13,7 +13,7 @@