Skip to content

Commit 638c9e8

Browse files
committed
fix: incorrect header props
1 parent 3b8b570 commit 638c9e8

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

package/src/components/Message/MessageSimple/Headers/SentToChannelHeader.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,12 @@ export const SentToChannelHeader = (props: SentToChannelHeaderProps) => {
100100
}, [onAlsoSentToChannelHeaderPress]);
101101

102102
return (
103-
<MemoizedSentToChannelHeader onPress={handleOnPress} showViewText={showViewText} {...props} />
103+
<MemoizedSentToChannelHeader
104+
onPress={handleOnPress}
105+
showViewText={showViewText}
106+
threadList={threadList}
107+
{...props}
108+
/>
104109
);
105110
};
106111

0 commit comments

Comments
 (0)