Skip to content

Commit

Permalink
Add href to logout button to ensure it has correct rollover behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Gilmer committed Mar 13, 2019
1 parent 34a1cbc commit eb76d0f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/shared/User/LoginButton.jsx
Expand Up @@ -21,7 +21,11 @@ const LoginButton = props => {
</React.Fragment>
);
} else {
return <a onClick={LogoutUser}>Sign Out</a>;
return (
<a href="#" onClick={LogoutUser}>
Sign Out
</a>
);
}
};

Expand Down

0 comments on commit eb76d0f

Please sign in to comment.