Fix show spinner for an empty conversation

This commit is contained in:
Bojan Mojsilovic 2023-10-06 17:10:39 +02:00
parent 3cb7896838
commit 7da8ea4ca8

View File

@ -455,8 +455,8 @@ export const MessagesProvider = (props: { children: ContextChildren }) => {
conversation.push(thread);
updateStore('conversation', (conv) => [...conv, ...conversation]);
updateStore('isConversationLoaded', () => true);
}
updateStore('isConversationLoaded', () => true);
};
const resetConversationLoaded = () => {