Skip to content

Commit 7be6ee6

Browse files
author
Ahmed Elghareeb
committed
refactor: fix wrongly capitalized letter
1 parent f8fa598 commit 7be6ee6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/backend/src/controllers/authentication.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ authenticationRouter.post('/logout', (req, res) => {
7979
// the information of the current user.
8080
authenticationRouter.get('/personal_info', async (req, res) => {
8181
if (!req.session.userId) {
82-
res.status(401).send('UnAuthenticated');
82+
res.status(401).send('Unauthenticated');
8383
return;
8484
}
8585
const userPermissions = await getUserPermissions(req.session.userId);

0 commit comments

Comments
 (0)