Skip to content

Commit

Permalink
convert login username to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
mikefeldberg committed Dec 19, 2024
1 parent 1368218 commit 572e4a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default function LoginForm({
try {
const { data } = await loginForm({
variables: {
username,
username: username.toLowerCase(),
password,
},
});
Expand Down

0 comments on commit 572e4a4

Please sign in to comment.