From 25be76c10911c2741fdbfc8f7f1aa8b8c042f5c7 Mon Sep 17 00:00:00 2001 From: assistant <18510979061@163.com> Date: Sun, 14 Sep 2025 22:05:42 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E8=B7=B3=E8=BD=AC=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ui/login/XcxLoginPage.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ui/login/XcxLoginPage.tsx b/src/ui/login/XcxLoginPage.tsx index fc2b1fa..8729e58 100644 --- a/src/ui/login/XcxLoginPage.tsx +++ b/src/ui/login/XcxLoginPage.tsx @@ -103,7 +103,9 @@ export default function XcxLoginPage() { let callBack = urlParams.get("callBack") if (callBack) { console.log({queryString}, decodeURIComponent(callBack)) - router.push(decodeURIComponent(callBack)) + window.location.href=decodeURIComponent(callBack) + // 使用router重複添加了todo + // router.push(decodeURIComponent(callBack)) } else { router.push('/task/project') }