From 029007308f0e15a6a4d8d971f16a950809d3f78f Mon Sep 17 00:00:00 2001 From: endcore Date: Fri, 17 Jan 2025 03:57:21 +0700 Subject: [PATCH] Update urls.ts update on login page using latest bless web instead of using old url which is not found --- src/lib/urls.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/urls.ts b/src/lib/urls.ts index db58c61..b91260b 100644 --- a/src/lib/urls.ts +++ b/src/lib/urls.ts @@ -6,7 +6,7 @@ export const getConsoleServer = (port?: number) => { const devMode = process.env.NODE_ENV === "development"; const host = devMode ? "http://0.0.0.0" - : "https://dashboard.blockless.network"; + : "https://console.bless.network"; return `${host}:${port ? port : devMode ? 3005 : 443}`; };