feat: cites text with links

This commit is contained in:
Daniel Avila 2023-03-09 20:29:44 -05:00
parent a286f027c8
commit d0ecaabfd8
5 changed files with 13 additions and 6 deletions

View file

@ -14,7 +14,6 @@ export default function DeleteButton({ conversationId, renaming, cancelHandler }
() => {
dispatch(setMessages([]));
dispatch(removeConvo(conversationId));
// dispatch(setConversation({ title: 'New chat', conversationId: null, parentMessageId: null }));
dispatch(setNewConvo());
}
);

View file

@ -11,7 +11,6 @@ export default function NewChat() {
dispatch(setText(''));
dispatch(setMessages([]));
dispatch(setNewConvo());
// dispatch(setConversation({ title: 'New Chat', error: false, conversationId: null, parentMessageId: null }));
};
return (