From e571996cb57d04232c1f47ab337ad656f48bb3cb Mon Sep 17 00:00:00 2001 From: Elias Schneider Date: Sun, 20 Apr 2025 17:04:00 +0200 Subject: [PATCH] fix: disable animations not respected on authorize and logout page --- frontend/src/routes/authorize/+page.svelte | 4 ++-- frontend/src/routes/logout/+page.svelte | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/src/routes/authorize/+page.svelte b/frontend/src/routes/authorize/+page.svelte index d9f1497a..e7f7e62c 100644 --- a/frontend/src/routes/authorize/+page.svelte +++ b/frontend/src/routes/authorize/+page.svelte @@ -2,6 +2,7 @@ import SignInWrapper from '$lib/components/login-wrapper.svelte'; import { Button } from '$lib/components/ui/button'; import * as Card from '$lib/components/ui/card'; + import { m } from '$lib/paraglide/messages'; import OidcService from '$lib/services/oidc-service'; import WebAuthnService from '$lib/services/webauthn-service'; import appConfigStore from '$lib/stores/application-configuration-store'; @@ -14,7 +15,6 @@ import type { PageData } from './$types'; import ClientProviderImages from './components/client-provider-images.svelte'; import ScopeItem from './components/scope-item.svelte'; - import { m } from '$lib/paraglide/messages'; const webauthnService = new WebAuthnService(); const oidService = new OidcService(); @@ -84,7 +84,7 @@ {#if client == null}

{m.client_not_found()}

{:else} - +

{m.sign_in_to({ name: client.name })} diff --git a/frontend/src/routes/logout/+page.svelte b/frontend/src/routes/logout/+page.svelte index 4d5828b2..ae1cce32 100644 --- a/frontend/src/routes/logout/+page.svelte +++ b/frontend/src/routes/logout/+page.svelte @@ -5,6 +5,7 @@ import { Button } from '$lib/components/ui/button'; import { m } from '$lib/paraglide/messages'; import WebAuthnService from '$lib/services/webauthn-service'; + import appConfigStore from '$lib/stores/application-configuration-store'; import userStore from '$lib/stores/user-store.js'; import { axiosErrorToast } from '$lib/utils/error-util.js'; @@ -26,7 +27,7 @@ {m.logout()} - +