🩹(frontend) update initials fallback
The previous value was temporary. Replaced it with an empty string, that would be more discreet.
This commit is contained in:
committed by
aleb_the_flash
parent
8b2750c413
commit
3dda12ada6
@@ -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 (
|
||||
<div
|
||||
className={css({
|
||||
|
||||
Reference in New Issue
Block a user