Skip to content

Commit

Permalink
chore: formatter code
Browse files Browse the repository at this point in the history
  • Loading branch information
3lang3 committed Dec 8, 2021
1 parent 5383526 commit 56ca3f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-vant/src/password-input/PasswordInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const PasswordInput = forwardRef<PasswordInputInstance, PasswordInputProps>((pro
onChange={handleChange}
onFocus={() => {
updateState({ focused: true });
props?.onFocus?.();
props.onFocus?.();
}}
onBlur={() => updateState({ focused: false })}
/>
Expand Down

0 comments on commit 56ca3f0

Please sign in to comment.