diff options
author | Ansh <anshnanda10@gmail.com> | 2023-04-25 12:01:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-25 14:01:47 -0500 |
commit | 01410ad4bfb5e49aa954ee2e65964a43b1aaf401 (patch) | |
tree | 551fb734cef583d7d4a6fc195fea5d3cb058024d /src/lib/hooks/usePermissions.ts | |
parent | b00365c196ba4709f90e9d90b0f8757248c0189e (diff) | |
download | voidsky-01410ad4bfb5e49aa954ee2e65964a43b1aaf401.tar.zst |
create Alert.tsx and Alert.web.tsx and replace uses (#513)
Diffstat (limited to 'src/lib/hooks/usePermissions.ts')
-rw-r--r-- | src/lib/hooks/usePermissions.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/hooks/usePermissions.ts b/src/lib/hooks/usePermissions.ts index 7849949c5..ffd850e80 100644 --- a/src/lib/hooks/usePermissions.ts +++ b/src/lib/hooks/usePermissions.ts @@ -1,8 +1,8 @@ -import {Alert} from 'react-native' import {Camera} from 'expo-camera' import * as MediaLibrary from 'expo-media-library' import {Linking} from 'react-native' import {isWeb} from 'platform/detection' +import {Alert} from 'view/com/util/Alert' const openSettings = () => { Linking.openURL('app-settings:') |