We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e06742 commit 314da98Copy full SHA for 314da98
1 file changed
frontend/src/utils.ts
@@ -29,9 +29,9 @@ export const confirmPasswordRules = (
29
) => {
30
const rules: any = {
31
validate: (value: string) => {
32
- const password = getValues().password || getValues().new_password;
33
- return value === password ? true : "The passwords do not match";
34
- }
+ const password = getValues().password || getValues().new_password
+ return value === password ? true : "The passwords do not match"
+ },
35
}
36
37
if (isRequired) {
0 commit comments