Skip to content

Commit 4fd9a2d

Browse files
committed
don't show on post-download page
1 parent 073dc90 commit 4fd9a2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/layouts/BaseLayout.astro

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const isPostDownloadPage = Astro.request.url.includes("/post-download");
5555
<NavigationReact client:load currentURL={Astro.request.url} />
5656
<BetaBanner client:load url={Astro.request.url} />
5757
<SurveyBanner client:load url={Astro.request.url} />
58-
<PromoBanner client:load />
58+
{!isPostDownloadPage && <PromoBanner client:load />}
5959
</header>
6060

6161
<slot />

0 commit comments

Comments
 (0)