Skip to content

Commit

Permalink
๐Ÿ”จ Fix: ์ฑ„ํŒ… ๋งˆ์ง€๋ง‰๊ธ€์ž๋งŒ ๋ณด์ด๋Š” ๋ฌธ์ œ ์ˆ˜์ •
Browse files Browse the repository at this point in the history
#
  • Loading branch information
qilip committed Nov 12, 2023
1 parent 39d60a7 commit cbc93a7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion pages/search/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,6 @@ const handleIsOpenUpdate = (value: boolean) => {
const queryClear = () => {
query.value = '';
hasError.value = false;
};
const clearHistory = () => {
Expand Down
2 changes: 1 addition & 1 deletion stores/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const useChatStore = defineStore(
if (event.type === 'event') {
currentConversation.value.messages[
currentConversation.value.messages.length - 1
].message = event.data;
].message += event.data;
}
};

Expand Down

0 comments on commit cbc93a7

Please sign in to comment.