fix round agent avatar

This commit is contained in:
marko-kraemer 2025-09-29 16:53:13 +02:00
parent 2f3fc1a1a1
commit 8306a344a4
2 changed files with 5 additions and 5 deletions

View File

@ -257,7 +257,7 @@ export function AgentIconEditorDialog({
backgroundColor={backgroundColor}
agentName={agentName}
size={100}
className="rounded-3xl border shadow-lg"
className="border shadow-lg"
/>
<div className="text-center">
<p className="font-medium">{agentName || 'Agent'}</p>

View File

@ -51,7 +51,7 @@ export const AgentAvatar: React.FC<AgentAvatarProps> = ({
if (isLoading && agentId) {
return (
<div
className={cn("bg-muted animate-pulse rounded-lg", className)}
className={cn("bg-muted animate-pulse rounded", className)}
style={{ width: size, height: size }}
/>
);
@ -69,7 +69,7 @@ export const AgentAvatar: React.FC<AgentAvatarProps> = ({
return (
<div
className={cn(
"flex items-center justify-center rounded-lg bg-muted border",
"flex items-center justify-center rounded bg-muted border",
className
)}
style={{ width: size, height: size }}
@ -83,7 +83,7 @@ export const AgentAvatar: React.FC<AgentAvatarProps> = ({
return (
<div
className={cn(
"flex items-center justify-center rounded-lg transition-all",
"flex items-center justify-center rounded transition-all",
className
)}
style={{
@ -105,7 +105,7 @@ export const AgentAvatar: React.FC<AgentAvatarProps> = ({
return (
<div
className={cn(
"flex items-center justify-center rounded-lg bg-muted",
"flex items-center justify-center rounded bg-muted",
className
)}
style={{ width: size, height: size }}