about summary refs log tree commit diff
path: root/src/platform
diff options
context:
space:
mode:
Diffstat (limited to 'src/platform')
-rw-r--r--src/platform/detection.ts2
-rw-r--r--src/platform/urls.tsx1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/platform/detection.ts b/src/platform/detection.ts
index 891377568..150fc1fe3 100644
--- a/src/platform/detection.ts
+++ b/src/platform/detection.ts
@@ -1,6 +1,6 @@
+import {Platform} from 'react-native'
 import {getLocales} from 'expo-localization'
 import {dedupArray} from 'lib/functions'
-import {Platform} from 'react-native'
 
 export const isIOS = Platform.OS === 'ios'
 export const isAndroid = Platform.OS === 'android'
diff --git a/src/platform/urls.tsx b/src/platform/urls.tsx
index 514bde43e..fd844d933 100644
--- a/src/platform/urls.tsx
+++ b/src/platform/urls.tsx
@@ -1,5 +1,4 @@
 import {Linking} from 'react-native'
-
 import {isNative, isWeb} from './detection'
 
 export async function getInitialURL(): Promise<string | undefined> {