From 414233961c98539e339d640c07dd7ffaa8dba4b4 Mon Sep 17 00:00:00 2001 From: Leo Giovanetti Date: Fri, 5 Aug 2022 02:21:43 -0300 Subject: [PATCH] Fixing App tabs routing (#3711) * Removing linkProps * Fixing format --- apps/web/components/AppsShell.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/web/components/AppsShell.tsx b/apps/web/components/AppsShell.tsx index 23755ab80d..1c6230eaf3 100644 --- a/apps/web/components/AppsShell.tsx +++ b/apps/web/components/AppsShell.tsx @@ -19,9 +19,7 @@ export default function AppsShell({ children }: { children: React.ReactNode }) { return ( <> -
- {status === "authenticated" && } -
+
{status === "authenticated" && }
{children}
);