From 0e1b9f529b17f6d5e50d2abadc8e490b0af5793b Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Thu, 4 Dec 2025 05:07:44 +0000 Subject: [PATCH] Log authentication options on the client. --- frontend/src/utils/passkey.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/utils/passkey.js b/frontend/src/utils/passkey.js index 1dbe897..bc59efc 100644 --- a/frontend/src/utils/passkey.js +++ b/frontend/src/utils/passkey.js @@ -58,6 +58,7 @@ export async function authenticate() { const ws = await aWebSocket(await makeUrl('/auth/ws/authenticate')) try { const res = await ws.receive_json() + console.log('Authentication options:', res) // status field present means error if (res.status) { throw new Error(res.detail || `Authentication failed: ${res.status}`)