From 9b73684082bde750e0e2a7abbd6687047ad94a0d Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Wed, 3 Dec 2025 17:07:44 -0600 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}`)