Skip to content
Snippets Groups Projects
Commit 1487648f authored by Ben Whitmore's avatar Ben Whitmore
Browse files

fix(menu): fix intermittent console errors regarding undefined icon

parent b586ad12
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@ const UserComponent = ({ user, loginLink, profileLink }) => (
</UserInfo>
</UserItem>
)}
{!user && <Item link={loginLink} name="Login" />}
{!user && <Item icon="logIn" link={loginLink} name="Login" />}
</Section>
)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment