diff --git a/library/src/helpers/__tests__/schema.test.ts b/library/src/helpers/__tests__/schema.test.ts index aaa5b6f7a..521062fb6 100644 --- a/library/src/helpers/__tests__/schema.test.ts +++ b/library/src/helpers/__tests__/schema.test.ts @@ -900,7 +900,6 @@ describe('SchemaHelpers', () => { 0, FIRST_CASE, OTHER_CASES, - undefined, ), ).toMatchSnapshot(); @@ -909,7 +908,6 @@ describe('SchemaHelpers', () => { 1, FIRST_CASE, OTHER_CASES, - undefined, ), ).toMatchSnapshot(); }); diff --git a/playground/components/SplitWrapper.tsx b/playground/components/SplitWrapper.tsx index 31fd7fc1b..60c3a575c 100644 --- a/playground/components/SplitWrapper.tsx +++ b/playground/components/SplitWrapper.tsx @@ -7,7 +7,6 @@ interface SplitWrapperProps { // react-split should be replaced with a React 18 friendly library or CSS const SplitWrapper = (props: SplitWrapperProps) => ( - <> ( > {props.children} - ); export default SplitWrapper;