Skip to content

Commit

Permalink
fix: password validation correction (#26227)
Browse files Browse the repository at this point in the history
  • Loading branch information
surbhi-posthog authored Nov 15, 2024
1 parent 27c62f3 commit cf7aaf6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const signupLogic = kea<signupLogicType>([
password: !values.preflight?.demo
? !password
? 'Please enter your password to continue'
: values.validatedPassword.feedback
: values.validatedPassword.feedback || undefined
: undefined,
}),
submit: async () => {
Expand Down

0 comments on commit cf7aaf6

Please sign in to comment.