Skip to content

Commit

Permalink
Fix creating password flow
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Aug 6, 2024
1 parent 59f7ef8 commit ab30f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface/windows/landing/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const createPassword = async () => {
const input1 = document.querySelector(".passwordInput1")

if (input0.value !== input1.value) {
dialog.message(language.landing.dialog.passwordsNotMatch, { type: "error" })
return dialog.message(language.landing.dialog.passwordsNotMatch, { type: "error" })
}

if (input0.value.length < 8) {
Expand Down

0 comments on commit ab30f4e

Please sign in to comment.