diff options
-rw-r--r-- | src/view/com/post-thread/PostThread.tsx | 16 | ||||
-rw-r--r-- | todos.txt | 2 |
2 files changed, 7 insertions, 11 deletions
diff --git a/src/view/com/post-thread/PostThread.tsx b/src/view/com/post-thread/PostThread.tsx index 7a70aea75..5bd379fed 100644 --- a/src/view/com/post-thread/PostThread.tsx +++ b/src/view/com/post-thread/PostThread.tsx @@ -73,15 +73,13 @@ export const PostThread = observer(function PostThread({uri}: {uri: string}) { <PostThreadItem item={item} onPressShare={onPressShare} /> ) return ( - <View> - <FlatList - data={posts} - keyExtractor={item => item._reactKey} - renderItem={renderItem} - refreshing={view.isRefreshing} - onRefresh={onRefresh} - /> - </View> + <FlatList + data={posts} + keyExtractor={item => item._reactKey} + renderItem={renderItem} + refreshing={view.isRefreshing} + onRefresh={onRefresh} + /> ) }) diff --git a/todos.txt b/todos.txt index a31ccb8e7..3c24cce76 100644 --- a/todos.txt +++ b/todos.txt @@ -27,6 +27,4 @@ Paul's todo list - Bugs - Check that sub components arent reloading too much - Titles are getting screwed up (possibly swipe related) - - Likes, RTs? - - Thread view sizing off - Home feed not showing own posts \ No newline at end of file |