diff --git a/src/components/shared/ChildStack.tsx b/src/components/shared/ChildStack.tsx
index ad17899e..57ad845f 100644
--- a/src/components/shared/ChildStack.tsx
+++ b/src/components/shared/ChildStack.tsx
@@ -12,7 +12,7 @@ export const ChildStack = ({ childNodes, currentNestingLevel, className }: Child
{childNodes.map((childNode: SchemaNode, index) => (
- {index > 0 && }
+ {index > 0 && }
))}
diff --git a/src/components/shared/__tests__/Property.spec.tsx b/src/components/shared/__tests__/Property.spec.tsx
index 14aad0c4..69a510fd 100644
--- a/src/components/shared/__tests__/Property.spec.tsx
+++ b/src/components/shared/__tests__/Property.spec.tsx
@@ -164,7 +164,7 @@ describe('Property component', () => {
const wrapper = render(schema);
expect(wrapper.html()).toMatchInlineSnapshot(
- `"
"`,
+ `"
"`,
);
});