Skip to content

Commit 1279938

Browse files
committed
fix: allow option to ask for permissions again
1 parent e8be5a3 commit 1279938

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/SampleApp/src/components/LocationSharing/CreateLocationModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ export const LiveLocationCreateModal = ({
315315
<Text style={[styles.loadingText, { color: grey }]}>
316316
{locationError || t('Fetching your current location...')}
317317
</Text>
318-
{permissionBlocked ? (
318+
{permissionBlocked || (Platform.OS === 'ios' && locationPermissionIssue) ? (
319319
<Pressable
320320
onPress={openSettings}
321321
style={({ pressed }) => [

0 commit comments

Comments
 (0)