diff --git a/src/routes/auth/login_callback/+server.ts b/src/routes/auth/login_callback/+server.ts
index 51815eccd2bfc2ca20c2e7c1a9752ef36c9f7c3f..2c528b75e7c4c1e342a3c6344269383730b7c16f 100644
--- a/src/routes/auth/login_callback/+server.ts
+++ b/src/routes/auth/login_callback/+server.ts
@@ -75,7 +75,10 @@ export const GET: RequestHandler = async ({
     },
   )
 
-  const redirectUrl = new URL(`/auth/restore_state`, publicConfig.baseUrl).toString()
+  const redirectUrl = new URL(
+    `/auth/restore_state`,
+    publicConfig.baseUrl,
+  ).toString()
   return new Response(`Redirecting to ${redirectUrl}…`, {
     status: 302,
     headers: {
diff --git a/src/routes/auth/logout_callback/+server.ts b/src/routes/auth/logout_callback/+server.ts
index 36ebf779eebdc926f3dbab4e44aad3cb19183dec..017ea023edb87dcf9eff405edcb7e2dc8f7e2fc9 100644
--- a/src/routes/auth/logout_callback/+server.ts
+++ b/src/routes/auth/logout_callback/+server.ts
@@ -1,10 +1,12 @@
 import type { RequestHandler } from "./$types"
 
-
 import publicConfig from "$lib/public_config"
 
 export const GET: RequestHandler = async () => {
-  const redirectUrl = new URL(`/auth/restore_state`, publicConfig.baseUrl).toString()
+  const redirectUrl = new URL(
+    `/auth/restore_state`,
+    publicConfig.baseUrl,
+  ).toString()
   return new Response(`Redirecting to ${redirectUrl}…`, {
     status: 302,
     headers: {