From febd3df5ac6d4d92213fe195d12bbef0d7416272 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 16 Sep 2021 11:22:55 +0100 Subject: [PATCH] Fix MainSplit IProps --- src/components/structures/MainSplit.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/structures/MainSplit.tsx b/src/components/structures/MainSplit.tsx index 0148bfca91..af7645767d 100644 --- a/src/components/structures/MainSplit.tsx +++ b/src/components/structures/MainSplit.tsx @@ -24,7 +24,7 @@ import { Direction } from "re-resizable/lib/resizer"; interface IProps { resizeNotifier: ResizeNotifier; collapsedRhs?: boolean; - panel: JSX.Element; + panel?: JSX.Element; } @replaceableComponent("structures.MainSplit")