diff options
Diffstat (limited to 'example/index.ts')
-rw-r--r-- | example/index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/example/index.ts b/example/index.ts index a3316e4..631a0ee 100644 --- a/example/index.ts +++ b/example/index.ts @@ -147,7 +147,8 @@ app.post('/verify-attestation', async (req, res) => { expectedChallenge: `${expectedChallenge}`, expectedOrigin, expectedRPID: rpID, - }); } catch (error) { + }); + } catch (error) { console.error(error); return res.status(400).send({ error: error.message }); } |