style: fix biome formatting in logout redirect
All checks were successful
CI / ci (push) Successful in 1m11s
CI / e2e (push) Has been skipped
CI / deploy (push) Successful in 14s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-12 22:06:58 +02:00
parent 4241023950
commit 9318bc56ac

View File

@@ -103,8 +103,7 @@ app.get("/logout", async (c) => {
const postLogoutRedirect = new URL("/", c.req.url).origin;
if (issuer) {
const clientId = process.env.OIDC_CLIENT_ID;
const redirectUri =
process.env.GEARBOX_URL || postLogoutRedirect;
const redirectUri = process.env.GEARBOX_URL || postLogoutRedirect;
return c.redirect(
`${issuer}/session/end?client_id=${encodeURIComponent(clientId || "")}&post_logout_redirect_uri=${encodeURIComponent(redirectUri)}`,
);