Checkpoint, fixing reset token handling broken in earlier edits.

This commit is contained in:
2025-08-06 21:55:14 +00:00
parent 1440727955
commit c8bb2ab12e
11 changed files with 392 additions and 170 deletions
-2
View File
@@ -8,7 +8,6 @@ export async function register(url, options) {
const optionsJSON = await ws.receive_json()
const registrationResponse = await startRegistration({ optionsJSON })
ws.send_json(registrationResponse)
const result = await ws.receive_json()
ws.close()
return result;
@@ -31,7 +30,6 @@ export async function authenticateUser() {
const optionsJSON = await ws.receive_json()
const authResponse = await startAuthentication({ optionsJSON })
ws.send_json(authResponse)
const result = await ws.receive_json()
ws.close()
return result