Fix incorrect icon for 'Sign Up' and 'Sign In'
This commit is contained in:
parent
9c6b7bd280
commit
ebdf9c1b11
1 changed files with 2 additions and 2 deletions
|
@ -319,11 +319,11 @@ const Header = (props: Props) => {
|
||||||
) : !IS_WEB ? (
|
) : !IS_WEB ? (
|
||||||
<>
|
<>
|
||||||
<MenuItem className="menu__link" onSelect={() => history.push(`/$/${PAGES.AUTH}`)}>
|
<MenuItem className="menu__link" onSelect={() => history.push(`/$/${PAGES.AUTH}`)}>
|
||||||
<Icon aria-hidden icon={ICONS.INVITE} />
|
<Icon aria-hidden icon={ICONS.SIGN_UP} />
|
||||||
{__('Sign Up')}
|
{__('Sign Up')}
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
<MenuItem className="menu__link" onSelect={() => history.push(`/$/${PAGES.AUTH_SIGNIN}`)}>
|
<MenuItem className="menu__link" onSelect={() => history.push(`/$/${PAGES.AUTH_SIGNIN}`)}>
|
||||||
<Icon aria-hidden icon={ICONS.INVITE} />
|
<Icon aria-hidden icon={ICONS.SIGN_IN} />
|
||||||
{__('Sign In')}
|
{__('Sign In')}
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Add table
Reference in a new issue