From 9f9371acd46abe51efe48b1bc026e265dfca6e24 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Tue, 12 Apr 2022 14:35:50 -0400 Subject: [PATCH] fix error-boundary.tsx Signed-off-by: Sebastian Malton --- src/renderer/components/error-boundary/error-boundary.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/renderer/components/error-boundary/error-boundary.tsx b/src/renderer/components/error-boundary/error-boundary.tsx index e22ee485e4..a5fd357ffa 100644 --- a/src/renderer/components/error-boundary/error-boundary.tsx +++ b/src/renderer/components/error-boundary/error-boundary.tsx @@ -11,8 +11,10 @@ import { observer } from "mobx-react"; import { Button } from "../button"; import { navigation } from "../../navigation"; import { issuesTrackerUrl, slackUrl } from "../../../common/vars"; +import type { SingleOrMany } from "../../utils"; export interface ErrorBoundaryProps { + children?: SingleOrMany; } interface State {