We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a12b8f commit 0cc6367Copy full SHA for 0cc6367
packages/keychain/src/components/connect/create/webauthn/index.ts
@@ -15,10 +15,7 @@ export function useWebauthnAuthentication() {
15
if (!chainId) throw new Error("No chainId found");
16
17
// Signup flow
18
- // Only Safari needs the popup flow for passkey creation in cross-origin iframes.
19
- // Chrome iOS (CriOS) uses WebKit like Safari but handles popups differently,
20
- // so we let it use the direct iframe path (which has publickey-credentials-create permission).
21
- const isSafari = /^((?!chrome|android|crios).)*safari/i.test(
+ const isSafari = /^((?!chrome|android).)*safari/i.test(
22
navigator.userAgent,
23
);
24
0 commit comments