Skip to content

Commit

Permalink
fix: typo in web signup error handling (#3289)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmorganca authored Sep 22, 2022
1 parent 567f3c8 commit 3d02a3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/pages/api/signup.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default async function signup(req, res) {

if (!SENDGRID_API_KEY || !SENDGRID_LIST_ID || !RECAPTCHA_SECRET_KEY) {
console.error('server not configured')
res.stauts(500).end()
res.status(500).end()
return
}

Expand Down

0 comments on commit 3d02a3f

Please sign in to comment.