From 3dda12ada6265d2177ae521167ad35f7cf3ac522 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Thu, 22 Aug 2024 22:35:49 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9(frontend)=20update=20initials=20fa?= =?UTF-8?q?llback?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous value was temporary. Replaced it with an empty string, that would be more discreet. --- 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 b033c806..326d1e62 100644 --- a/src/frontend/src/components/Avatar.tsx +++ b/src/frontend/src/components/Avatar.tsx @@ -14,7 +14,7 @@ export const Avatar = ({ bgColor = '#3498db', textColor = 'white', }: AvatarProps) => { - const initial = name?.trim()?.charAt(0).toUpperCase() || '*' // fixme use a proper fallback + const initial = name?.trim()?.charAt(0).toUpperCase() || '' return (