diff --git a/src/components/Layout/index.tsx b/src/components/Layout/index.tsx index b9025536e..08a0e09ed 100644 --- a/src/components/Layout/index.tsx +++ b/src/components/Layout/index.tsx @@ -24,7 +24,7 @@ export interface LayoutProps { ) => JSX.Element); contentHeader?: JSX.Element; children: JSX.Element; - ErrorBoundary?: any; // TODO + ErrorBoundary?: React.ComponentType<{ children: React.ReactNode }>; isSidebarCollapsed?: boolean; setIsSidebarCollapsed?: (state: boolean) => void; }