fix deletion bug

This commit is contained in:
Mckay Wrigley
2023-03-15 08:32:21 -06:00
parent 742efea50d
commit c40f755cac
3 changed files with 5 additions and 2 deletions
+1
View File
@@ -11,6 +11,7 @@ interface Props {
}
export const Conversations: FC<Props> = ({ loading, conversations, selectedConversation, onSelectConversation, onDeleteConversation }) => {
console.log(conversations);
return (
<div className="flex flex-col space-y-2">
{conversations.map((conversation, index) => (