We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87b32c5 commit a40facdCopy full SHA for a40facd
package/src/components/MessageList/MessageList.tsx
@@ -1099,7 +1099,8 @@ const MessageListWithContext = <
1099
style={[styles.container, { backgroundColor: white_snow }, container]}
1100
testID='message-flat-list-wrapper'
1101
>
1102
- {processedMessageList.length === 0 ? (
+ {/* Don't show the empty list indicator for Thread messages */}
1103
+ {processedMessageList.length === 0 && !thread ? (
1104
<View style={[styles.flex, { backgroundColor: white_snow }]} testID='empty-state'>
1105
<EmptyStateIndicator listType='message' />
1106
</View>
0 commit comments