mirror of
https://github.com/iflytek/skillhub.git
synced 2026-09-07 08:26:00 +00:00
fix(web): swap password visibility toggle eye icons
This commit is contained in:
parent
4365a9363c
commit
cd570ed208
1 changed files with 1 additions and 1 deletions
|
|
@ -147,7 +147,7 @@ export function LoginPage() {
|
|||
onClick={() => setShowPassword((current) => !current)}
|
||||
className="absolute inset-y-0 right-0 flex w-12 items-center justify-center text-muted-foreground transition-colors hover:text-foreground"
|
||||
>
|
||||
{showPassword ? <Eye className="h-4 w-4" /> : <EyeOff className="h-4 w-4" />}
|
||||
{showPassword ? <EyeOff className="h-4 w-4" /> : <Eye className="h-4 w-4" />}
|
||||
</button>
|
||||
</div>
|
||||
{fieldErrors.password ? (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue