This commit is contained in:
hailin 2025-04-21 01:58:39 +08:00
parent 19f0d27fcf
commit 3727af3d1c
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ export const ChatItem: FC<ChatItemProps> = ({ chat }) => {
const handleClick = () => {
if (!selectedWorkspace) return
return router.push(`/${localePrefix}/${selectedWorkspace.id}/chat/${chat.id}`)
return router.push(`${localePrefix}/${selectedWorkspace.id}/chat/${chat.id}`)
}
const handleKeyDown = (e: React.KeyboardEvent<HTMLDivElement>) => {