Skip to content

Commit

Permalink
fix: chat on start bug (#1588)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamjoel authored Nov 21, 2023
1 parent d8a7e89 commit b23de4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions web/app/components/explore/universal-chat/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -688,6 +688,7 @@ const Main: FC<IMainProps> = () => {
onUnpin={handleUnpin}
controlUpdateList={controlUpdateConversationList}
onDelete={handleDelete}
onStartChat={() => handleConversationIdChange('-1')}
/>
)
}
Expand Down
2 changes: 1 addition & 1 deletion web/app/components/share/chat/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ const Main: FC<IMainProps> = ({
onUnpin={handleUnpin}
controlUpdateList={controlUpdateConversationList}
onDelete={handleDelete}
onStartChat={handleStartChat}
onStartChat={() => handleConversationIdChange('-1')}
/>
)
}
Expand Down

0 comments on commit b23de4a

Please sign in to comment.