From 15cf13f8b62b95cb3dcb1386d9648801bad52d11 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Mon, 27 Jul 2026 18:02:40 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84(frontend)=20render=20Avatar=20init?= =?UTF-8?q?ials=20in=20uppercase?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Uppercase the initials rendered in the Avatar so their vertical centering stays consistent. With lowercase letters, the initials were slightly shifted toward the bottom of the Avatar, which broke the alignment. --- src/frontend/src/components/Avatar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/components/Avatar.tsx b/src/frontend/src/components/Avatar.tsx index 92b60908..ed5d558b 100644 --- a/src/frontend/src/components/Avatar.tsx +++ b/src/frontend/src/components/Avatar.tsx @@ -56,7 +56,7 @@ export const Avatar = React.memo( fontWeight="500" fill="currentColor" > - {initial} + {initial.toUpperCase()}