Remove shallow routing (#3401)

stable-app-tests
sean-brydon 2022-07-17 11:12:13 +01:00 committed by GitHub
parent 4dec3fb97c
commit f43bfd308b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ const tabs = [
export default function BookingsShell({ children }: { children: React.ReactNode }) { export default function BookingsShell({ children }: { children: React.ReactNode }) {
return ( return (
<> <>
<NavTabs tabs={tabs} linkProps={{ shallow: true }} /> <NavTabs tabs={tabs} />
<main>{children}</main> <main>{children}</main>
</> </>
); );