Skip to content

Commit

Permalink
Fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
binaryoverload committed Oct 16, 2024
1 parent d7f5840 commit 7f01f1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/api/routes/v1/register.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ router.post('/', async (request: express.Request, response: express.Response): P
await session.commitTransaction();
} catch (error: any) {
LOG_ERROR('[POST] /v1/register: ' + error);
if (error.stack) console.error(error.stack)
if (error.stack) console.error(error.stack);

await session.abortTransaction();

Expand Down

0 comments on commit 7f01f1c

Please sign in to comment.