Skip to content

Commit

Permalink
Switch menu pos of about us and activity log
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminaaron committed Nov 23, 2024
1 parent 1f7d48c commit 90c9a31
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ const HeaderBarDesktop = ({isApp}) => {
<LandingPageHollowButton text={t('home.menu.improve')} to={'/#feedback'}/>
: null
}
{
isApp ? null :
<LandingPageHollowButton text={t('home.menu.aboutUs')} to={"/#about-us"}/>
}
{isApp ? null :
featureFlags.newActivityLog ?
<LandingPageHollowButton text={t('home.menu.activityLog')} to={'/activity-log'}/>
: null
}
{
isApp ? null :
<LandingPageHollowButton text={t('home.menu.aboutUs')} to={"/#about-us"}/>
}
{
featureFlags.newLanguageToggle && (
<ToggleButtonGroup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ const HeaderBarMobile = ({isApp}) => {
)
: null
}
{
isApp ? null : (
<>
<LandingPageHollowButton text={t('home.menu.aboutUs')} to={"/#about-us"}/>
<Divider sx={{width: '100%', backgroundColor: globalStyles.colorLightGreyTransparent}}/>
</>
)
}
{isApp ? null :
featureFlags.newActivityLog ?
(<>
Expand All @@ -76,14 +84,6 @@ const HeaderBarMobile = ({isApp}) => {
)
: null
}
{
isApp ? null : (
<>
<LandingPageHollowButton text={t('home.menu.aboutUs')} to={"/#about-us"}/>
<Divider sx={{width: '100%', backgroundColor: globalStyles.colorLightGreyTransparent}}/>
</>
)
}
{
featureFlags.newLanguageToggle && (
<ToggleButtonGroup
Expand Down

0 comments on commit 90c9a31

Please sign in to comment.