Skip to content

Commit 757b287

Browse files
committed
lint
1 parent d16cf01 commit 757b287

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/models/SchemaRow.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Type, MetaInfo } from "~/components";
33
import { type SchemaNode } from "@stoplight/json-schema-tree";
44
5-
const { node, root } = Astro.props;
5+
const { node } = Astro.props;
66
---
77

88
<li>

src/components/models/SchemaViewer.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jsonSchemaTree.populate();
5656
<ul class="pl-0">
5757
{
5858
(jsonSchemaTree.root.children[0] as RegularNode).children?.map(
59-
(node: SchemaNode) => <SchemaRow node={node} root />,
59+
(node: SchemaNode) => <SchemaRow node={node} />,
6060
)
6161
}
6262
</ul>

0 commit comments

Comments
 (0)