Bluesky app fork with some witchin' additions ๐Ÿ’ซ
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[๐Ÿด] Fix load state for disabled chats (#4119)

authored by

Eric Bailey and committed by
GitHub
f52db843 3356bcfb

+1 -1
+1 -1
src/screens/Messages/Conversation/index.tsx
··· 79 79 const [hasScrolled, setHasScrolled] = React.useState(false) 80 80 const readyToShow = 81 81 hasScrolled || 82 - (convoState.status === ConvoStatus.Ready && 82 + (isConvoActive(convoState) && 83 83 !convoState.isFetchingHistory && 84 84 convoState.items.length === 0) 85 85