From 6ca8109251ef3f7c76b0649ba6dba35cac4b6893 Mon Sep 17 00:00:00 2001 From: web Date: Mon, 15 Dec 2025 06:28:15 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20update=20logout=20redirec?= =?UTF-8?q?tion=20URL=20to=20use=20hash-based=20routing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/user/src/utils/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user/src/utils/common.ts b/apps/user/src/utils/common.ts index df262b3..2c07e45 100644 --- a/apps/user/src/utils/common.ts +++ b/apps/user/src/utils/common.ts @@ -55,6 +55,6 @@ export function Logout() { ) ) { setRedirectUrl(location.pathname); - location.href = "/auth"; + location.href = "/#/auth"; } }