From d00785aae263a7a21766213f685c52943914a6c7 Mon Sep 17 00:00:00 2001 From: minhn4 Date: Wed, 22 Jul 2026 09:36:34 +0700 Subject: [PATCH] fix: follow the landing-page base-path rename to /codev The landing page now serves under /codev instead of /codev-landing-page, so point LOGIN_SUCCESS_URL at the new OAuth-relay path. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/lib/const.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/const.ts b/src/lib/const.ts index f353bf2..eba7257 100644 --- a/src/lib/const.ts +++ b/src/lib/const.ts @@ -6,7 +6,7 @@ import pkg from "../../package.json" with { type: "json" }; const BASE_URL = atob("aHR0cHM6Ly9uZXRtaW5kLnZpZXR0ZWwudm4="); export const BACKEND_URL = `${BASE_URL}/codev-backend`; export const SSO_URL = `${BASE_URL}/sso-wrapper`; -export const LOGIN_SUCCESS_URL = `${BASE_URL}/codev-landing-page/oauth/success`; +export const LOGIN_SUCCESS_URL = `${BASE_URL}/codev/oauth/success`; export const SKILLHUB_URL = `${BASE_URL}/netmindhub`; export const FALLBACK_MODEL = atob("TWluaU1heC9NaW5pTWF4LU0yLjc=");