+2
-1
frontend/src/routes/OAuthLogin.svelte
+2
-1
frontend/src/routes/OAuthLogin.svelte
···
1
1
<script lang="ts">
2
2
import { navigate, routes, getFullUrl } from '../lib/router.svelte'
3
3
import { _ } from '../lib/i18n'
4
-
import { startOAuthLogin } from '../lib/oauth'
4
+
import { startOAuthLogin, ensureRequestUri } from '../lib/oauth'
5
5
import {
6
6
prepareRequestOptions,
7
7
serializeAssertionResponse,
···
57
57
})
58
58
59
59
$effect(() => {
60
+
ensureRequestUri('').catch(() => {})
60
61
fetchAuthRequestInfo()
61
62
fetchSsoProviders()
62
63
})