From dcccc2be4750fe2a147c7dbd7a7f17bd48e07a3e Mon Sep 17 00:00:00 2001 From: Peter Maquiran Date: Mon, 20 Apr 2026 16:30:12 +0100 Subject: [PATCH] fix base path --- app/api/auth/refresh/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/auth/refresh/route.ts b/app/api/auth/refresh/route.ts index 75abf35..1aa0212 100644 --- a/app/api/auth/refresh/route.ts +++ b/app/api/auth/refresh/route.ts @@ -15,7 +15,7 @@ export async function GET(req: Request) { } try { - const res = await fetch(`${env.AUTH_API_URL}/auth/refresh`, { + const res = await fetch(`${env.API_URL}/auth/refresh`, { method: "POST", headers: { "Content-Type": "application/json",