From 0f507067f51cf40ee55cd115c9762c48c4067a79 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tadeusz=20Miesi=C4=85c?= <tadeusz.miesiac@gmail.com>
Date: Mon, 25 Sep 2023 15:52:43 +0200
Subject: [PATCH] fix(fixed avatar img heigh/width): fixed avatar height/width

---
 .../FunctionalArea/TopBar/UserAvatar/UserAvatar.component.tsx   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/FunctionalArea/TopBar/UserAvatar/UserAvatar.component.tsx b/src/components/FunctionalArea/TopBar/UserAvatar/UserAvatar.component.tsx
index c48e49cc..f2eedb81 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>
 );
-- 
GitLab