Skip to content

Commit

Permalink
fix log message
Browse files Browse the repository at this point in the history
  • Loading branch information
zargarzadehm committed Feb 17, 2024
1 parent 097c1b5 commit b26e092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/authentication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const authenticateKey = (req: Request, res: Response, next: NextFunction) => {
) {
next();
} else {
res.status(403).send({ message: "API_KEY doesn't exist or it is wrong" });
res.status(403).send({ message: "Api-Key doesn't exist or it is wrong" });
}
};

Expand Down

0 comments on commit b26e092

Please sign in to comment.