We seem to be seeing a lot of Cannot read property 'SIGNIN_CANCELLED' of undefined in production in our iOS app. Is there some specific config required to prevent this? We can do an undefined check or wrap in a Platform.OS but I didn't see this in the example code.
We use the following code to catch cancelled errors:
import {
AppleRequestResponseFullName,
appleAuth,
appleAuthAndroid,
} from '@invertase/react-native-apple-authentication';
Hi,
We seem to be seeing a lot of
Cannot read property 'SIGNIN_CANCELLED' of undefined
in production in our iOS app. Is there some specific config required to prevent this? We can do an undefined check or wrap in a Platform.OS but I didn't see this in the example code.We use the following code to catch cancelled errors:
...
So it looks like
appleAuthAndroid.Error
is somehow missing.package.json:
"@invertase/react-native-apple-authentication": "^2.1.5",
...."react-native": "0.67.1"
Thanks in advance!