Corrected color for an unassigned avatar

Signed-off-by: Alexander Platov <alexander.platov@hardcoreeng.com>
This commit is contained in:
Alexander Platov 2025-05-16 22:21:48 +07:00
parent 845ec007bf
commit e32a5a6bfd
No known key found for this signature in database
GPG Key ID: 67AE092F5EB4180C

View File

@ -122,7 +122,11 @@
/>
{:else}
<div class="icon">
<Icon icon={icon ?? AvatarIcon} fill={'var(--white-color)'} size={'full'} />
<Icon
icon={icon ?? AvatarIcon}
fill={color ? 'var(--primary-button-color)' : 'var(--theme-caption-color)'}
size={'full'}
/>
</div>
{/if}
</div>