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 ( return (
<Container className="assistants-tab" ref={containerRef}> <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 <DraggableList
list={agents} list={agents}
onUpdate={setAgents} onUpdate={setAgents}
@ -171,7 +171,7 @@ const Assistants: FC<AssistantsTabProps> = ({
/> />
)} )}
<Divider className="my-2" /> <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 <DraggableList
list={assistants} list={assistants}
onUpdate={updateAssistants} onUpdate={updateAssistants}