Skip to content

Commit fd1ef01

Browse files
committed
fix the field group settings issue
1 parent f5d308f commit fd1ef01

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/settings/settings-content.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ function SettingsSubSection({ element, isNested, isGroupParent }: { element: Set
405405

406406
function SettingsFieldGroup({ element, isNested, isGroupParent }: { element: SettingsElementType, isNested?: boolean, isGroupParent?: boolean }) {
407407
return (
408-
<div className="flex flex-wrap gap-4">
408+
<div className="flex flex-col w-full divide-y divide-border">
409409
{element.children?.map((child) => (
410410
<FieldRenderer key={child.id} element={child} isNested={isNested} isGroupParent={isGroupParent} />
411411
))}

0 commit comments

Comments
 (0)