💄(frontend) render Avatar initials in uppercase

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.
This commit is contained in:
lebaudantoine
2026-07-27 18:02:40 +02:00
parent 12a9f0e5cd
commit 15cf13f8b6
+1 -1
View File
@@ -56,7 +56,7 @@ export const Avatar = React.memo(
fontWeight="500"
fill="currentColor"
>
{initial}
{initial.toUpperCase()}
</text>
</svg>
</div>