diff --git a/src/components/FunctionalArea/TopBar/UserAvatar/UserAvatar.component.tsx b/src/components/FunctionalArea/TopBar/UserAvatar/UserAvatar.component.tsx index c48e49cce8ad5201194febb6fbbe6dac7247cc01..f2eedb817c632a0a97398310a5a6d75f92efaca1 100644 --- a/src/components/FunctionalArea/TopBar/UserAvatar/UserAvatar.component.tsx +++ b/src/components/FunctionalArea/TopBar/UserAvatar/UserAvatar.component.tsx @@ -3,6 +3,6 @@ import avatarImg from '@/assets/images/user-avatar.png'; export const UserAvatar = (): JSX.Element => ( <div className="w-8 h-8 mr-7" data-testid="user-avatar"> - <Image src={avatarImg} fill alt="user avatar" /> + <Image src={avatarImg} alt="user avatar" height={32} width={32} /> </div> );