fix: avatar radius and current project

This commit is contained in:
David Hill
2026-01-16 11:03:33 +00:00
parent 54aff53c71
commit d91d4ce2ef
2 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ export function Avatar(props: AvatarProps) {
}}
>
<Show when={src} fallback={split.fallback?.[0]}>
{(src) => <img src={src()} draggable={false} class="size-full object-cover" />}
{(src) => <img src={src()} draggable={false} class="size-full object-cover rounded-[inherit]" />}
</Show>
</div>
)