From 30b433397afdf6f5d1f5bd4cea469d4d5a0668bc Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Sat, 20 Jan 2024 13:29:12 +0000 Subject: [PATCH] Removed shell from troubleshooter (#13303) Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com> --- packages/features/troubleshooter/layout.tsx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) 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} + +
); }