Skip to content

Commit c70e1e3

Browse files
author
RainbowBird
committed
chore(client): update chat localstorage key version
1 parent 924cd0a commit c70e1e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/client/src/stores/useChat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { useBridgeStore } from '../composables/useBridge'
1010

1111
export const useChatStore = defineStore('chat', () => {
1212
const bridgeStore = useBridgeStore()
13-
const allChats = useLocalStorage<Record<string, CoreDialog[]>>('chat/chats', {})
13+
const allChats = useLocalStorage<Record<string, CoreDialog[]>>('v2/chat/chats', {})
1414

1515
const chats = computed({
1616
get: () => {

0 commit comments

Comments
 (0)