Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/modules/layouts/components/WebsiteLayout/Header/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import Link from '~core/Link';
import NavigationToggle from '~core/NavigationToggle';
import { getMainClasses } from '~utils/css';
import {
COLONY_APP,
COLONY_APP_BETA_COLONY,
COLONY_DISCORD,
COLONY_DISCOURSE,
DOCS_COLONY_JS_GET_STARTED,
Expand Down Expand Up @@ -56,9 +56,9 @@ const MSG = defineMessages({
id: 'layouts.WebsiteLayout.Header.navLinkAbout',
defaultMessage: 'About',
},
navLinkApp: {
id: 'layouts.WebsiteLayout.Header.navLinkApp',
defaultMessage: 'Go to app',
navLinkBetaColony: {
id: 'layouts.WebsiteLayout.Header.navLinkBetaColony',
defaultMessage: 'Go to the Betacolony',
},
navLinkCommunity: {
id: 'layouts.WebsiteLayout.Header.navLinkCommunity',
Expand Down Expand Up @@ -308,8 +308,8 @@ const Header = ({
/>
<Link
className={styles.navLinkAlt}
href={COLONY_APP}
text={MSG.navLinkApp}
href={COLONY_APP_BETA_COLONY}
text={MSG.navLinkBetaColony}
/>
<div className={styles.mobileButtons}>
<Button
Expand All @@ -319,8 +319,8 @@ const Header = ({
theme: 'primaryHollow',
}}
className={styles.mobileButton}
linkTo={COLONY_APP}
text={MSG.navLinkApp}
linkTo={COLONY_APP_BETA_COLONY}
text={MSG.navLinkBetaColony}
/>
<Button
appearance={{
Expand Down