Skip to content

Commit 3905431

Browse files
committed
Fixes
1 parent 8614a85 commit 3905431

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

packages/web/src/public-site/PublicSite.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ export const PublicSite = (props: PublicSiteProps) => {
190190
element={
191191
<DownloadPage
192192
isMobile={isMobileOrNarrow}
193+
isAuthenticated={isAuthenticated}
193194
openNavScreen={openNavScreen}
194195
setRenderPublicSite={setRenderPublicSite}
195196
/>

packages/web/src/public-site/pages/download-page/DownloadPage.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ const messages = {
4141

4242
type DownloadPageProps = {
4343
isMobile: boolean
44+
isAuthenticated: boolean
4445
openNavScreen: () => void
4546
setRenderPublicSite: (shouldRender: boolean) => void
4647
}
@@ -181,6 +182,7 @@ const DownloadPage = (props: DownloadPageProps) => {
181182
) : null}
182183
<Nav2026
183184
isMobile={isMobileOrNarrow}
185+
isAuthenticated={props.isAuthenticated}
184186
openNavScreen={props.openNavScreen}
185187
setRenderPublicSite={props.setRenderPublicSite}
186188
/>

packages/web/src/public-site/pages/landing-2026/components/CreateFutureCTA.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,7 @@ export const CreateFutureCTA = (props: CreateFutureCTAProps) => {
4545
className={styles.ctaButton}
4646
onClick={onStartExploring}
4747
>
48-
<span className={styles.ctaLabel}>
49-
{messages.startExploring}
50-
</span>
48+
<span className={styles.ctaLabel}>{messages.startExploring}</span>
5149
</button>
5250
</div>
5351
</div>

0 commit comments

Comments
 (0)