Skip to content

Commit

Permalink
chore(dashboard): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnaud AMBROSELLI committed Sep 28, 2023
1 parent 0b763de commit abcd135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/src/components/PasswordInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const PasswordInput = ({ className, showPassword, setShowPassword, type, ...prop
<input
className={[className, '!tw-mb-0', showPassword ? 'show-password' : 'hide-password'].join(' ')}
type={type || showPassword ? 'text' : 'password'}
autocapitalize="off"
autoCapitalize="off"
{...props}
/>
<EyeIcon strikedThrough={showPassword} onClick={() => setShowPassword(!showPassword)} className="tw-absolute tw-right-4 tw-mb-auto" />
Expand Down

0 comments on commit abcd135

Please sign in to comment.