diff --git a/src/components/settings/PasswordSecurityForm.tsx b/src/components/settings/PasswordSecurityForm.tsx index aabbf60..9a0e005 100644 --- a/src/components/settings/PasswordSecurityForm.tsx +++ b/src/components/settings/PasswordSecurityForm.tsx @@ -1,6 +1,7 @@ 'use client'; import { useState } from 'react'; +import Image from 'next/image'; import { TwoFactorSettings } from './TwoFactorSettings'; import api from '@/services/api'; @@ -146,7 +147,12 @@ export function PasswordSecurityForm({ onSave }: PasswordSecurityFormProps) { onClick={() => toggleShowPassword('current')} className="absolute right-4 top-1/2 -translate-y-1/2 text-[#00293D]/50 hover:text-[#00293D] cursor-pointer" > - {showPasswords.current ? '🙈' : '👁️'} + {showPasswords.current @@ -169,7 +175,12 @@ export function PasswordSecurityForm({ onSave }: PasswordSecurityFormProps) { onClick={() => toggleShowPassword('new')} className="absolute right-4 top-1/2 -translate-y-1/2 text-[#00293D]/50 hover:text-[#00293D] cursor-pointer" > - {showPasswords.new ? '🙈' : '👁️'} + {showPasswords.new

@@ -195,7 +206,12 @@ export function PasswordSecurityForm({ onSave }: PasswordSecurityFormProps) { onClick={() => toggleShowPassword('confirm')} className="absolute right-4 top-1/2 -translate-y-1/2 text-[#00293D]/50 hover:text-[#00293D] cursor-pointer" > - {showPasswords.confirm ? '🙈' : '👁️'} + {showPasswords.confirm