diff options
| author | David Hill <[email protected]> | 2026-01-16 11:03:33 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-16 11:55:15 +0000 |
| commit | b1a22e08f58ca44d089e21aee52bea0544aa5959 (patch) | |
| tree | abab7b4b2aac9bc9a5090b31c0db4bad904dd525 /packages/ui/src/components | |
| parent | c551a4b6e31619005f65d40ff32163fd9d97482c (diff) | |
| download | opencode-b1a22e08f58ca44d089e21aee52bea0544aa5959.tar.gz opencode-b1a22e08f58ca44d089e21aee52bea0544aa5959.zip | |
fix: avatar radius and current project
Diffstat (limited to 'packages/ui/src/components')
| -rw-r--r-- | packages/ui/src/components/avatar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/ui/src/components/avatar.tsx b/packages/ui/src/components/avatar.tsx index ab7b0d0e2..9d124b56a 100644 --- a/packages/ui/src/components/avatar.tsx +++ b/packages/ui/src/components/avatar.tsx @@ -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> ) |
