fix: 调整部分问题

This commit is contained in:
ChenZhaoYu
2023-03-06 20:34:29 +08:00
parent c8fa086565
commit 50e672e79b
7 changed files with 135 additions and 160 deletions

View File

@@ -3,7 +3,7 @@ import { ss } from '@/utils/storage'
const LOCAL_NAME = 'chatStorage'
export function defaultState(): Chat.ChatState {
const uuid = Date.now()
const uuid = 1002
return { active: uuid, history: [{ uuid, title: 'New Chat', isEdit: false }], chat: [{ uuid, data: [] }] }
}