diff --git a/packages/features/troubleshooter/layout.tsx b/packages/features/troubleshooter/layout.tsx index fdcc968cd4..b9579450d3 100644 --- a/packages/features/troubleshooter/layout.tsx +++ b/packages/features/troubleshooter/layout.tsx @@ -1,22 +1,19 @@ import type { ComponentProps } from "react"; import React, { Suspense } from "react"; -import Shell from "@calcom/features/shell/Shell"; +import type Shell from "@calcom/features/shell/Shell"; import { ErrorBoundary } from "@calcom/ui"; import { Loader } from "@calcom/ui/components/icon"; export default function TroubleshooterLayout({ children, - ...rest }: { children: React.ReactNode } & ComponentProps) { return ( - }> -
- - }>{children} - -
-
+
+ + }>{children} + +
); }