about summary refs log tree commit diff
path: root/src/view/screens/PostThread.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/screens/PostThread.tsx')
-rw-r--r--src/view/screens/PostThread.tsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/view/screens/PostThread.tsx b/src/view/screens/PostThread.tsx
index e872db2dc..fc804f61e 100644
--- a/src/view/screens/PostThread.tsx
+++ b/src/view/screens/PostThread.tsx
@@ -18,9 +18,11 @@ export const PostThread = ({visible, params}: ScreenParams) => {
   }, [visible, store.nav, name])
 
   return (
-    <View>
+    <View style={{flex: 1}}>
       <ViewHeader title="Post" subtitle={`by ${name}`} />
-      <PostThreadComponent uri={uri} />
+      <View style={{flex: 1}}>
+        <PostThreadComponent uri={uri} />
+      </View>
     </View>
   )
 }