diff options
Diffstat (limited to 'src/components/dialogs/EmbedConsent.tsx')
-rw-r--r-- | src/components/dialogs/EmbedConsent.tsx | 6 |
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`)} |