fix: enhance logging in token introspection and validation for better debugging

This commit is contained in:
Mabe
2026-06-21 17:23:52 +02:00
parent 93f20e191c
commit c2f8c36bbb
3 changed files with 9 additions and 6 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ async function handleRedirectCallback(): Promise<string | null> {
})
const result = await response.json()
const token = result.id_token || result.access_token
const token = result.access_token || result.id_token
if (response.ok && token) {
setLocalToken(token)
return token