mirror of
https://github.com/balzack/databag.git
synced 2025-02-14 12:39:17 +00:00
fixing reference error
This commit is contained in:
parent
3da3cfe719
commit
db7eff8a51
@ -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 />
|
||||
|
@ -64,7 +64,7 @@ export function Conversation({ closeConversation, openDetails }) {
|
||||
</TouchableOpacity>
|
||||
</SafeAreaView>
|
||||
<SafeAreaView edges={['bottom']} style={styles.body}>
|
||||
<ConversationBody channel={channel} />
|
||||
<ConversationBody />
|
||||
</SafeAreaView>
|
||||
</View>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user