Skip to content

Commit

Permalink
fix: clear current password in account settings
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlLiu2023 committed Mar 27, 2023
1 parent 9005010 commit 08ff6c4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apps/storefront/src/components/form/B3ControlTextField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ export const B3ControlTextField = ({
inputProps={muiAttributeProps}
error={!!errors[name]}
helperText={(errors as any)[name] ? (errors as any)[name].message : null}
autoComplete={fieldType === 'password' ? 'new-password' : 'off'}
/>
)
)}
Expand Down

0 comments on commit 08ff6c4

Please sign in to comment.