about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-10-06 11:41:45 -0700
committerGitHub <noreply@github.com>2024-10-06 11:41:45 -0700
commit0ebf6366523c2edb1ca2a2ca6a2a610ec135371e (patch)
tree394138b3264a941941fa24cb24defbc5193577e9 /src
parentb52f8ced56476163ed07edeed2a416cc02aa2b48 (diff)
downloadvoidsky-0ebf6366523c2edb1ca2a2ca6a2a610ec135371e.tar.zst
Fix padding in repost dialog (#5626)
Diffstat (limited to 'src')
-rw-r--r--src/view/com/util/post-ctrls/RepostButton.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/util/post-ctrls/RepostButton.tsx b/src/view/com/util/post-ctrls/RepostButton.tsx
index 9be72ae23..936746f51 100644
--- a/src/view/com/util/post-ctrls/RepostButton.tsx
+++ b/src/view/com/util/post-ctrls/RepostButton.tsx
@@ -90,7 +90,7 @@ let RepostButton = ({
         control={dialogControl}
         nativeOptions={{preventExpansion: true}}>
         <Dialog.Handle />
-        <Dialog.Inner label={_(msg`Repost or quote post`)}>
+        <Dialog.ScrollableInner label={_(msg`Repost or quote post`)}>
           <View style={a.gap_xl}>
             <View style={a.gap_xs}>
               <Button
@@ -164,7 +164,7 @@ let RepostButton = ({
               <ButtonText>{_(msg`Cancel`)}</ButtonText>
             </Button>
           </View>
-        </Dialog.Inner>
+        </Dialog.ScrollableInner>
       </Dialog.Outer>
     </>
   )