We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fd9a2d commit 64bf161Copy full SHA for 64bf161
src/layouts/BaseLayout.astro
@@ -53,8 +53,8 @@ const isPostDownloadPage = Astro.request.url.includes("/post-download");
53
>
54
<header class="z-50 sticky left-0 right-0 top-0">
55
<NavigationReact client:load currentURL={Astro.request.url} />
56
- <BetaBanner client:load url={Astro.request.url} />
57
- <SurveyBanner client:load url={Astro.request.url} />
+ {!isPostDownloadPage && <BetaBanner client:load url={Astro.request.url} />}
+ {!isPostDownloadPage && <SurveyBanner client:load url={Astro.request.url} />}
58
{!isPostDownloadPage && <PromoBanner client:load />}
59
</header>
60
0 commit comments