Skip to content

Commit 34784db

Browse files
committed
[DO NOT MERGE] AuthScreen: Disable apple_kid check.
Just for testing.
1 parent 7800c33 commit 34784db

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/start/AuthScreen.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ import { loginSuccess, navigateToDev, navigateToPassword } from '../actions';
3333
import IosCompliantAppleAuthButton from './IosCompliantAppleAuthButton';
3434
import openLink from '../utils/openLink';
3535

36+
/* eslint-disable-next-line no-unused-vars */
3637
const KANDRA_APPLE_KID = 'asdfjkl;'; // TODO, of course (likely won't live here)
3738
/**
3839
* Describes a method for authenticating to the server.
@@ -265,7 +266,7 @@ class AuthScreen extends PureComponent<Props> {
265266
const shouldUseNativeAppleFlow =
266267
Platform.OS === 'ios'
267268
&& method.name === 'apple'
268-
&& method.apple_kid === KANDRA_APPLE_KID
269+
// && method.apple_kid === KANDRA_APPLE_KID
269270
&& (await AppleAuthentication.isAvailableAsync());
270271

271272
if (action === 'dev') {

0 commit comments

Comments
 (0)