Fixing App tabs routing (#3711)

* Removing linkProps

* Fixing format
pull/3712/head^2
Leo Giovanetti 2022-08-05 02:21:43 -03:00 committed by GitHub
parent 7747b3d9a0
commit 414233961c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -19,9 +19,7 @@ export default function AppsShell({ children }: { children: React.ReactNode }) {
return (
<>
<div className="mb-12 block lg:hidden">
{status === "authenticated" && <NavTabs tabs={tabs} linkProps={{ shallow: true }} />}
</div>
<div className="mb-12 block lg:hidden">{status === "authenticated" && <NavTabs tabs={tabs} />}</div>
<main className="pb-6">{children}</main>
</>
);