Skip to content

Commit

Permalink
Missing semicolons are added.
Browse files Browse the repository at this point in the history
  • Loading branch information
meceware committed Jan 11, 2025
1 parent 411d4d9 commit 44362b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ const authConfig = {
html: html({ url, token: otp }),
text: text({ url, token: otp }),
}),
})
});

if (!res.ok)
throw new Error('Resend error: ' + JSON.stringify(await res.json()))
throw new Error('Resend error: ' + JSON.stringify(await res.json()));
},
}),
],
Expand Down

0 comments on commit 44362b6

Please sign in to comment.