Skip to content

Commit

Permalink
fix: fix spread control props
Browse files Browse the repository at this point in the history
  • Loading branch information
NasgulNexus committed Oct 31, 2023
1 parent 7603a3d commit 5c5959d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PasswordInput/PasswordInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ export const PasswordInput: React.FC<PasswordInputProps> = (props) => {
rightContent={additionalRightContent}
autoComplete={autoComplete ? autoComplete : 'new-password'}
controlProps={{
className: b('input-control', controlProps?.className),
...controlProps,
className: b('input-control', controlProps?.className),
}}
/>
);
Expand Down

0 comments on commit 5c5959d

Please sign in to comment.