diff --git a/app/screens/thread/thread_post_list/thread_post_list.tsx b/app/screens/thread/thread_post_list/thread_post_list.tsx index 183203fe38..0d2a6ca4f5 100644 --- a/app/screens/thread/thread_post_list/thread_post_list.tsx +++ b/app/screens/thread/thread_post_list/thread_post_list.tsx @@ -2,7 +2,7 @@ // See LICENSE.txt for license information. import React, {useMemo} from 'react'; -import {StyleSheet} from 'react-native'; +import {StyleSheet, View} from 'react-native'; import {Edge, SafeAreaView} from 'react-native-safe-area-context'; import PostList from '@components/post_list'; @@ -25,8 +25,9 @@ type Props = { const edges: Edge[] = ['bottom']; const styles = StyleSheet.create({ - container: {marginTop: 20}, + container: {marginTop: 10}, flex: {flex: 1}, + footer: {height: 20}, }); const ThreadPostList = ({ @@ -54,6 +55,7 @@ const ThreadPostList = ({ shouldShowJoinLeaveMessages={false} showMoreMessages={false} showNewMessageLine={false} + footer={} testID='thread.post_list' /> );