style(AssistantsTab): reorder tailwind classes for consistency

This commit is contained in:
icarus 2025-09-18 13:54:59 +08:00
parent d56c526709
commit 842a6cb178

View File

@ -148,7 +148,7 @@ const Assistants: FC<AssistantsTabProps> = ({
return (
<Container className="assistants-tab" ref={containerRef}>
<span className="mb-2 text-xs text-foreground-400">{t('common.agent_other')}</span>
<span className="mb-2 text-foreground-400 text-xs">{t('common.agent_other')}</span>
<DraggableList
list={agents}
onUpdate={setAgents}
@ -171,7 +171,7 @@ const Assistants: FC<AssistantsTabProps> = ({
/>
)}
<Divider className="my-2" />
<span className="mb-2 text-xs text-foreground-400">{t('common.assistant_other')}</span>
<span className="mb-2 text-foreground-400 text-xs">{t('common.assistant_other')}</span>
<DraggableList
list={assistants}
onUpdate={updateAssistants}