Skip to content

Commit 626312c

Browse files
committed
Fix web version app url
1 parent f52f914 commit 626312c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

homepage/components/organisms/Header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,11 +284,11 @@ const Header = () => {
284284
color='teal'
285285
fontSize={1}
286286
py={2}
287-
href='https://note.boostio.co'
287+
href='https://note.boostio.co/app'
288288
onClick={(event) => {
289289
event.preventDefault()
290290
sendGAEvent('open-in-browser')
291-
queueNavigateToGA('https://note.boostio.co')
291+
queueNavigateToGA('https://note.boostio.co/app')
292292
}}
293293
>
294294
<Icon path={mdiOpenInApp} /> {t('common.openInBrowser')}

homepage/components/organisms/HeroSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,11 @@ const HeroSection = () => {
159159
mx={1}
160160
py={2}
161161
my={[1, 0]}
162-
href='https://note.boostio.co'
162+
href='https://note.boostio.co/app'
163163
onClick={(event) => {
164164
event.preventDefault()
165165
sendGAEvent('open-in-browser')
166-
queueNavigateToGA('https://note.boostio.co')
166+
queueNavigateToGA('https://note.boostio.co/app')
167167
}}
168168
>
169169
<Icon path={mdiOpenInApp} /> {t('common.openInBrowser')}

0 commit comments

Comments
 (0)