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 eed3870 commit 249c337Copy full SHA for 249c337
examples/ExpoMessaging/app/channel/[cid]/index.tsx
@@ -8,7 +8,7 @@ import { useHeaderHeight } from '@react-navigation/elements';
8
9
export default function ChannelScreen() {
10
const router = useRouter();
11
- const { setThread, channel } = useContext(AppContext);
+ const { setThread, channel, thread } = useContext(AppContext);
12
const headerHeight = useHeaderHeight();
13
14
if (!channel) {
@@ -23,6 +23,7 @@ export default function ChannelScreen() {
23
audioRecordingEnabled={true}
24
channel={channel}
25
keyboardVerticalOffset={headerHeight}
26
+ thread={thread}
27
>
28
<View style={{ flex: 1 }}>
29
<MessageList
0 commit comments