work-in-progress atproto PDS
typescript atproto pds atcute
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: rm

Mary e7fc6a9a d31d3ef5

-12
-12
packages/danaus/src/web/scripts/webauthn-authenticate.ts
··· 49 49 const responseInput = this.responseInput; 50 50 const startButton = this.startButton; 51 51 52 - console.log('[webauthn-authenticate] starting', { 53 - hasOptions: !!options, 54 - hasStatus: !!status, 55 - hasResponseInput: !!responseInput, 56 - responseInputValue: responseInput?.value, 57 - }); 58 - 59 52 if (!options || !status || !responseInput) { 60 53 console.error('webauthn authenticate: missing required elements'); 61 54 return; ··· 104 97 }); 105 98 106 99 responseInput.value = serialized; 107 - console.log('[webauthn-authenticate] response set', { 108 - serialized, 109 - inputValue: responseInput.value, 110 - }); 111 - status.textContent = 'Security key verified!'; 112 100 113 101 this.formElement?.submit(); 114 102 } catch (err) {