Skip to content

Commit 51b4846

Browse files
committed
fix: fields alignment
1 parent c4e3ac1 commit 51b4846

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/features/workspace/components/workspace-muxing-model.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function SortableItem({
103103
setRuleItem({ ...rule, provider_id, model })
104104
}
105105
/>
106-
{showRemoveButton && !isDefaultRule && (
106+
{showRemoveButton && !isDefaultRule ? (
107107
<Button
108108
aria-label="remove mux rule"
109109
isIcon
@@ -112,6 +112,8 @@ function SortableItem({
112112
>
113113
<Trash01 />
114114
</Button>
115+
) : (
116+
<div className="min-w-10 max-w-10" />
115117
)}
116118
</div>
117119
</div>

0 commit comments

Comments
 (0)