style(AgentItem): add background color to session count chip

This commit is contained in:
icarus 2025-09-27 14:19:00 +08:00
parent 8b0e8506c2
commit 7084b8d429

View File

@ -44,7 +44,7 @@ const AgentItem: FC<AgentItemProps> = ({ agent, isActive, onDelete, onPress }) =
variant="bordered"
size="sm"
radius="full"
className="aspect-square h-5 w-5 items-center justify-center border-[0.5px] text-[10px]">
className="aspect-square h-5 w-5 items-center justify-center border-[0.5px] bg-background text-[10px]">
{sessions.length}
</Chip>
)}