Skip to content

Commit

Permalink
Typooo
Browse files Browse the repository at this point in the history
  • Loading branch information
7emansell committed Nov 21, 2024
1 parent 673d296 commit bc995e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/api/account/username/[id].ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default async function handler(
const patronId = req.query.id as string
const { username } = req.body
/** We check that the patron cookie matches the patron id in the request,
* i.e.,the logged in user is updating their own PIN. */
* i.e.,the logged in user is updating their own useername. */
if (patronId == cookiePatronId) {
const response = await updateUsername(patronId, username)
responseStatus = response.status
Expand Down

0 comments on commit bc995e2

Please sign in to comment.