From 821ac3060801d40f69e8af6700c3125b28e45222 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tadeusz=20Miesi=C4=85c?= <tadeusz.miesiac@gmail.com> Date: Mon, 25 Sep 2023 10:41:39 +0200 Subject: [PATCH] fix(fixed avatar placeholder): fixed avatar placeholder height and 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..3dfa2e6c 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" width={32} height={32} /> </div> ); -- GitLab