diff --git a/frontend/src/api/auth.ts b/frontend/src/api/auth.ts index 03fc692c..dad4d926 100644 --- a/frontend/src/api/auth.ts +++ b/frontend/src/api/auth.ts @@ -56,7 +56,7 @@ export class AuthClient { } async fetchOAuth2LoginUrl(provider: OAuth2Provider, redirectTo?: string | null): Promise { - let url = `${this.apiBaseUrl}/auth/external/cookie/${provider.name}/authorize` + let url = `${this.apiBaseUrl}auth/external/cookie/${provider.name}/authorize` if (redirectTo) { url += `?redirect_to=${encodeURIComponent(redirectTo)}` }