diff --git a/frontend/src/email-handler.html b/frontend/src/email-handler.html
index 9e24eb6b60cb..6eb5728b37fa 100644
--- a/frontend/src/email-handler.html
+++ b/frontend/src/email-handler.html
@@ -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");
diff --git a/package.json b/package.json
index 438ab7cbb222..aa1d0b896aa2 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "monkeytype",
- "version": "25.49.0",
+ "version": "26.2.0",
"private": true,
"license": "GPL-3.0",
"type": "module",