diff options
author | Eric Bailey <git@esb.lol> | 2024-05-20 14:17:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-20 12:17:26 -0700 |
commit | f52db843adf91050cf0456172e472617664a9eb9 (patch) | |
tree | bdecbfa63a939618e463d5f4b69e324eeb4c729a /src | |
parent | 3356bcfba6f990f507ff6b5429a7d8b000d9fec2 (diff) | |
download | voidsky-f52db843adf91050cf0456172e472617664a9eb9.tar.zst |
[🐴] Fix load state for disabled chats (#4119)
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/Messages/Conversation/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Messages/Conversation/index.tsx b/src/screens/Messages/Conversation/index.tsx index 63175b551..62e0e8157 100644 --- a/src/screens/Messages/Conversation/index.tsx +++ b/src/screens/Messages/Conversation/index.tsx @@ -79,7 +79,7 @@ function Inner() { const [hasScrolled, setHasScrolled] = React.useState(false) const readyToShow = hasScrolled || - (convoState.status === ConvoStatus.Ready && + (isConvoActive(convoState) && !convoState.isFetchingHistory && convoState.items.length === 0) |