fix: remove type annotation from js code

This commit is contained in:
Miodec 2026-01-06 18:38:13 +01:00
parent 354bf73a34
commit a7d8bd23d8

View file

@ -238,12 +238,10 @@
.then((email) => {
var accountEmail = email;
var newPassword =
qs < HTMLInputElement > "main .resetPassword .pwd"?.getValue();
var newPasswordConfirm =
qs <
HTMLInputElement >
"main .resetPassword .pwd-confirm"?.getValue();
var newPassword = qs("main .resetPassword .pwd")?.getValue();
var newPasswordConfirm = qs(
"main .resetPassword .pwd-confirm",
)?.getValue();
if (newPassword !== newPasswordConfirm) {
alert("Passwords do not match");