fix: remove unused chatLog variable from ChatHistoryDrawer.vue

This commit is contained in:
wxg0103 2025-07-31 09:17:24 +08:00
parent 86ad2c54c6
commit 52a98ae9b5
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ const props = defineProps<{
const emit = defineEmits(['newChat', 'clickLog', 'deleteLog', 'refreshFieldTitle', 'clearChat'])
const { chatUser, chatLog } = useStore()
const { chatUser } = useStore()
const clearChat = () => {
emit('clearChat')

View File

@ -54,7 +54,7 @@ const props = defineProps<{
const emit = defineEmits(['newChat', 'clickLog', 'deleteLog', 'refreshFieldTitle', 'clearChat'])
const { chatUser, chatLog } = useStore()
const { chatUser } = useStore()
const clearChat = () => {
emit('clearChat')