From e3b7c9330053935089881693d2968117802be685 Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 22 Apr 2025 19:13:15 +0800 Subject: [PATCH] . --- components/chat/chat-hooks/use-chat-handler.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/chat/chat-hooks/use-chat-handler.tsx b/components/chat/chat-hooks/use-chat-handler.tsx index 672d6e1..c251916 100644 --- a/components/chat/chat-hooks/use-chat-handler.tsx +++ b/components/chat/chat-hooks/use-chat-handler.tsx @@ -198,7 +198,7 @@ export const useChatHandler = () => { } const homePath = locale === defaultLocale ? "/" : `/${locale}` - return router.push(`/${homePath}/${selectedWorkspace.id}/chat`) + return router.push(`${homePath}/${selectedWorkspace.id}/chat`) // return router.push(`/${locale}/${selectedWorkspace.id}/chat`) }