mirror of
https://github.com/balzack/databag.git
synced 2025-02-14 20:49:16 +00:00
fixing reference error
This commit is contained in:
parent
3da3cfe719
commit
db7eff8a51
@ -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 />
|
||||||
|
@ -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>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user