APP-3031: Fix contact imports after Expo 57 (#11658)

This commit is contained in:
Samuel Newman
2026-09-04 15:32:27 +03:00
committed by GitHub
parent f69ad16fed
commit 48f96d6421
4 changed files with 4 additions and 4 deletions
@@ -1,7 +1,7 @@
import {useContext} from 'react'
import {Alert, View} from 'react-native'
import {useSafeAreaInsets} from 'react-native-safe-area-context'
import * as Contacts from 'expo-contacts'
import * as Contacts from 'expo-contacts/legacy'
import {type Un$Typed} from '@atproto/lex'
import {type Client} from '@atproto/lex'
import {toDatetimeString} from '@atproto/syntax'
+1 -1
View File
@@ -1,6 +1,6 @@
import {createContext, useContext, useReducer} from 'react'
import {type GestureResponderEvent} from 'react-native'
import {type ExistingContact} from 'expo-contacts'
import {type ExistingContact} from 'expo-contacts/legacy'
import {type CountryCode} from '#/lib/international-telephone-codes'
import type * as bsky from '#/types/bsky'