Skip to content

Commit 7357c8c

Browse files
committed
fix: filter file fields from forms preview
1 parent ea1a8b4 commit 7357c8c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Form/Fields.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default function FormFields({ fields }) {
3131
}}
3232
>
3333
<StagePayload
34-
fields={fields}
34+
fields={fields.filter((field) => !field.is_file)}
3535
mappers={[]}
3636
showDiff={false}
3737
diff={DIFF_MOCK}

0 commit comments

Comments
 (0)