File tree Expand file tree Collapse file tree
packages/web/src/public-site Expand file tree Collapse file tree Original file line number Diff line number Diff 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 />
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ const messages = {
4141
4242type 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 />
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments