Skip to content

Commit 545ea5e

Browse files
authored
Fixed typo (vercel#40608)
1 parent 7556611 commit 545ea5e

File tree

1 file changed

+1
-1
lines changed
  • examples/with-passport-and-next-connect/pages

1 file changed

+1
-1
lines changed

examples/with-passport-and-next-connect/pages/signup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function SignupPage() {
1616
name: e.currentTarget.name.value,
1717
}
1818

19-
if (body.password !== e.currentTarget.rpassword.value) {
19+
if (body.password !== e.currentTarget.password.value) {
2020
setErrorMsg(`The passwords don't match`)
2121
return
2222
}

0 commit comments

Comments
 (0)