[dyad] Removed border from nested schema - wrote 1 file(s)

This commit is contained in:
[dyad]
2026-01-20 15:07:16 +01:00
parent bfd3c6c89d
commit 1f50915df1

View File

@@ -83,7 +83,7 @@ const renderValue = (value: any): React.ReactNode => {
return ( return (
<div className="flex flex-col gap-3"> <div className="flex flex-col gap-3">
{value.map((item, index) => ( {value.map((item, index) => (
<div key={index} className="border-l-2 pl-4"> <div key={index} className="pl-4">
{renderValue(item)} {renderValue(item)}
</div> </div>
))} ))}