Skip to content

Commit

Permalink
Grid action button removed
Browse files Browse the repository at this point in the history
  • Loading branch information
bhujoshi committed Nov 10, 2024
1 parent 0a06915 commit be78018
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions screens/ChatSessionScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ const ChatSessionScreen = (props) => {
navigation={navigation}
/>
))}
<ActivityIndicator animating={isLoading} size="large" color="#ff7875" />
</ScrollView>

{error && (
Expand All @@ -99,7 +100,6 @@ const ChatSessionScreen = (props) => {
<Text style={styles.errorMessageText}>{error}</Text>
</View>
)}
<ActivityIndicator animating={isLoading} size="large" color="#ff7875" />

{!showUnlockPro() && messages.length > 0 && (
<View style={styles.inputContainer}>
Expand Down Expand Up @@ -137,7 +137,6 @@ const ChatSessionScreen = (props) => {
)}
</View>
</ImageBackground>
<GridActionButton navigation={navigation} />
</View>
);
};
Expand Down

0 comments on commit be78018

Please sign in to comment.