diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-05-21 21:51:57 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-21 21:51:57 +0300 |
commit | a0ea634349fd7eac40d72dbd57339f1d6c53a117 (patch) | |
tree | 8dc54d395e12159b8f202d71da88f9b011b71ef1 /src/components/StarterPack/QrCodeDialog.tsx | |
parent | c16cd36b6447bc769a502cfc0e368a0f0bfaf2e0 (diff) | |
download | voidsky-a0ea634349fd7eac40d72dbd57339f1d6c53a117.tar.zst |
Speculative fix to Android camera roll issue (#8397)
Diffstat (limited to 'src/components/StarterPack/QrCodeDialog.tsx')
-rw-r--r-- | src/components/StarterPack/QrCodeDialog.tsx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/components/StarterPack/QrCodeDialog.tsx b/src/components/StarterPack/QrCodeDialog.tsx index 43d8b72da..6a66e92bd 100644 --- a/src/components/StarterPack/QrCodeDialog.tsx +++ b/src/components/StarterPack/QrCodeDialog.tsx @@ -4,7 +4,7 @@ import type ViewShot from 'react-native-view-shot' import {requestMediaLibraryPermissionsAsync} from 'expo-image-picker' import {createAssetAsync} from 'expo-media-library' import * as Sharing from 'expo-sharing' -import {AppBskyGraphDefs, AppBskyGraphStarterpack} from '@atproto/api' +import {type AppBskyGraphDefs, AppBskyGraphStarterpack} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -15,7 +15,7 @@ import * as Toast from '#/view/com/util/Toast' import {atoms as a} from '#/alf' import {Button, ButtonText} from '#/components/Button' import * as Dialog from '#/components/Dialog' -import {DialogControlProps} from '#/components/Dialog' +import {type DialogControlProps} from '#/components/Dialog' import {Loader} from '#/components/Loader' import {QrCode} from '#/components/StarterPack/QrCode' import * as bsky from '#/types/bsky' @@ -55,7 +55,7 @@ export function QrCodeDialog({ if (isNative) { const res = await requestMediaLibraryPermissionsAsync() - if (!res) { + if (!res.granted) { Toast.show( _( msg`You must grant access to your photo library to save a QR code`, @@ -155,6 +155,7 @@ export function QrCodeDialog({ return ( <Dialog.Outer control={control}> + <Dialog.Handle /> <Dialog.ScrollableInner label={_(msg`Create a QR code for a starter pack`)}> <View style={[a.flex_1, a.align_center, a.gap_5xl]}> @@ -197,6 +198,7 @@ export function QrCodeDialog({ )} </React.Suspense> </View> + <Dialog.Close /> </Dialog.ScrollableInner> </Dialog.Outer> ) |