fix import issue

This commit is contained in:
Mckay Wrigley 2023-03-25 04:37:47 -06:00
parent 4876dced04
commit c3132ef2fb
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ export const Sidebar: FC<Props> = ({ loading, conversations, lightMode, selected
> >
<Conversations <Conversations
loading={loading} loading={loading}
conversations={filteredConversations.filter((conversation) => conversation.folderId === 0)} conversations={filteredConversations.filter((conversation) => conversation.folderId === 0 || !folders[conversation.folderId - 1])}
selectedConversation={selectedConversation} selectedConversation={selectedConversation}
onSelectConversation={onSelectConversation} onSelectConversation={onSelectConversation}
onDeleteConversation={handleDeleteConversation} onDeleteConversation={handleDeleteConversation}