fixing reference error

This commit is contained in:
balzack 2022-10-04 07:09:42 -07:00
parent 3da3cfe719
commit db7eff8a51
2 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ export function Session() {
</SafeAreaView>
<View style={styles.conversation}>
{ channel && (
<Conversation channel={channel} closeConversation={clearConversation} openDetails={setChannelDetails} />
<Conversation closeConversation={clearConversation} openDetails={setChannelDetails} />
)}
{ !channel && (
<Welcome />

View File

@ -64,7 +64,7 @@ export function Conversation({ closeConversation, openDetails }) {
</TouchableOpacity>
</SafeAreaView>
<SafeAreaView edges={['bottom']} style={styles.body}>
<ConversationBody channel={channel} />
<ConversationBody />
</SafeAreaView>
</View>
);