Skip to content

Commit

Permalink
fix: add space
Browse files Browse the repository at this point in the history
  • Loading branch information
MinjaeKimmm committed Nov 26, 2024
1 parent 5b32009 commit 74ba7d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const agreeOnTermsOfServiceHandler: RequestHandler = async (
}

if (user.agreeOnTermsOfService === true) {
return res.status(400).send("Users/agreeOnTermsOfService: already agreed");
return res.status(400).send("Users/agreeOnTermsOfService : already agreed");
}

user.agreeOnTermsOfService = true;
Expand Down

0 comments on commit 74ba7d2

Please sign in to comment.