diff --git a/components/chat/chat-hooks/use-chat-handler.tsx b/components/chat/chat-hooks/use-chat-handler.tsx index c251916..672d6e1 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`) }