Skip to content

Commit

Permalink
[MS] Uppercase email address
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienSvtr committed Sep 3, 2024
1 parent 4ab5ea4 commit 3d62018
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/views/client-area/BmsLogin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ async function onLoginClicked(): Promise<void> {
return;
}
querying.value = true;
const response = await BmsAccessInstance.get().login(email.value, password.value);
const response = await BmsAccessInstance.get().login(email.value.toLowerCase(), password.value);
if (response.ok) {
emits('loginSuccess', await BmsAccessInstance.get().getToken(), BmsAccessInstance.get().getPersonalInformation());
Expand Down

0 comments on commit 3d62018

Please sign in to comment.