Skip to content

Commit

Permalink
fix message padding
Browse files Browse the repository at this point in the history
  • Loading branch information
AtlantisPleb committed Dec 30, 2024
1 parent 141f356 commit fae453c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/chat/ChatOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const ChatOverlay = observer(({ messages, isLoading, error }: ChatOverlay
<ScrollView
ref={scrollViewRef}
style={[baseStyles.messageList, { flex: 1 }]}
contentContainerStyle={{ flexGrow: 1, justifyContent: "flex-end" }}
contentContainerStyle={{ flexGrow: 1, justifyContent: "flex-end", paddingBottom: 70 }}
>
{messages.map((message: Message) => (
<TouchableOpacity
Expand All @@ -47,4 +47,4 @@ export const ChatOverlay = observer(({ messages, isLoading, error }: ChatOverlay
</ScrollView>
</View>
)
})
})

0 comments on commit fae453c

Please sign in to comment.