chore: update Codex channel (#5461)

This commit is contained in:
Seefs
2026-06-12 23:45:15 +08:00
committed by GitHub
parent d0c4305a16
commit 1292b8b2d5
27 changed files with 100 additions and 1039 deletions
+12 -3
View File
@@ -36,13 +36,22 @@ export function ProviderBadge({
const icon = iconKey ? getLobeIcon(iconKey, iconSize) : null
return (
<div data-slot='provider-badge' className={cn('flex items-center gap-1.5', className)}>
{icon}
<div
data-slot='provider-badge'
className={cn(
'flex min-w-0 max-w-full items-center gap-1.5',
className
)}
>
{icon && <span className='flex shrink-0 items-center'>{icon}</span>}
<StatusBadge
label={label}
autoColor={label}
size='sm'
className={!icon ? 'pl-0' : undefined}
className={cn(
'min-w-0 shrink overflow-hidden',
!icon && 'pl-0'
)}
{...badgeProps}
/>
</div>