about summary refs log tree commit diff
path: root/src/components/dialogs
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-09-09 18:45:36 +0300
committerGitHub <noreply@github.com>2025-09-09 18:45:36 +0300
commit4a1b1f17f46de9f8dde2766d61edc02c2267b14b (patch)
tree1f166879b40c73db7e1afd9b8ab189c872f58214 /src/components/dialogs
parent7574a745d17135b33a31e3fb7da8953ea378fe4c (diff)
downloadvoidsky-4a1b1f17f46de9f8dde2766d61edc02c2267b14b.tar.zst
Clean up dialogs (#8934)
Diffstat (limited to 'src/components/dialogs')
-rw-r--r--src/components/dialogs/EmbedConsent.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/dialogs/EmbedConsent.tsx b/src/components/dialogs/EmbedConsent.tsx
index 086d43f95..fe8609544 100644
--- a/src/components/dialogs/EmbedConsent.tsx
+++ b/src/components/dialogs/EmbedConsent.tsx
@@ -10,9 +10,9 @@ import {
 } from '#/lib/strings/embed-player'
 import {useSetExternalEmbedPref} from '#/state/preferences'
 import {atoms as a, useBreakpoints, useTheme} from '#/alf'
+import {Button, ButtonText} from '#/components/Button'
 import * as Dialog from '#/components/Dialog'
-import {Button, ButtonText} from '../Button'
-import {Text} from '../Typography'
+import {Text} from '#/components/Typography'
 
 export function EmbedConsentDialog({
   control,
@@ -48,7 +48,7 @@ export function EmbedConsentDialog({
   }, [control, setExternalEmbedPref, source])
 
   return (
-    <Dialog.Outer control={control}>
+    <Dialog.Outer control={control} nativeOptions={{preventExpansion: true}}>
       <Dialog.Handle />
       <Dialog.ScrollableInner
         label={_(msg`External Media`)}