Run `detectWebAuthnSupport` only on sign-in page (#31676)

Fix #31675, regression of #31504.
pull/31522/head^2
Jason Song 4 months ago committed by GitHub
parent 2f1cb1d289
commit bbd14769cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      web_src/js/features/user-auth-webauthn.ts

@ -5,6 +5,10 @@ import {GET, POST} from '../modules/fetch.ts';
const {appSubUrl} = window.config;
export async function initUserAuthWebAuthn() {
if (!document.querySelector('.user.signin')) {
return;
}
if (!detectWebAuthnSupport()) {
return;
}

Loading…
Cancel
Save