From 1f50915df1a0156bc610d5aab6572268e929bcd5 Mon Sep 17 00:00:00 2001 From: "[dyad]" Date: Tue, 20 Jan 2026 15:07:16 +0100 Subject: [PATCH] [dyad] Removed border from nested schema - wrote 1 file(s) --- src/components/pretty-schema-display.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/pretty-schema-display.tsx b/src/components/pretty-schema-display.tsx index 98b4cb8..1ef64ae 100644 --- a/src/components/pretty-schema-display.tsx +++ b/src/components/pretty-schema-display.tsx @@ -83,7 +83,7 @@ const renderValue = (value: any): React.ReactNode => { return (
{value.map((item, index) => ( -
+
{renderValue(item)}
))}