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 ? (
|
||||
<>
|
||||
<MenuItem className="menu__link" onSelect={() => history.push(`/$/${PAGES.AUTH}`)}>
|
||||
<Icon aria-hidden icon={ICONS.INVITE} />
|
||||
<Icon aria-hidden icon={ICONS.SIGN_UP} />
|
||||
{__('Sign Up')}
|
||||
</MenuItem>
|
||||
<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')}
|
||||
</MenuItem>
|
||||
</>
|
||||
|
|
Loading…
Reference in a new issue