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> </SafeAreaView>
<View style={styles.conversation}> <View style={styles.conversation}>
{ channel && ( { channel && (
<Conversation channel={channel} closeConversation={clearConversation} openDetails={setChannelDetails} /> <Conversation closeConversation={clearConversation} openDetails={setChannelDetails} />
)} )}
{ !channel && ( { !channel && (
<Welcome /> <Welcome />

View File

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