We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b97a54e commit b659672Copy full SHA for b659672
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@authsignal/browser",
3
- "version": "1.12.6",
+ "version": "1.12.7",
4
"type": "module",
5
"main": "dist/index.js",
6
"module": "dist/index.js",
src/passkey.ts
@@ -291,9 +291,7 @@ export class Passkey {
291
}
292
293
private async doesBrowserSupportConditionalCreate() {
294
- // @ts-expect-error types are not up to date
295
if (window.PublicKeyCredential && PublicKeyCredential.getClientCapabilities) {
296
297
const capabilities = await PublicKeyCredential.getClientCapabilities();
298
if (capabilities.conditionalCreate) {
299
return true;
0 commit comments