fix(navigation): correct logout href

This commit is contained in:
Sérgio Ramos 2018-03-29 14:49:23 +01:00
parent e2a3fb73df
commit 0b9c464bb0
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "my-joy-navigation", "name": "my-joy-navigation",
"version": "2.6.0", "version": "2.6.1",
"private": true, "private": true,
"license": "MPL-2.0", "license": "MPL-2.0",
"main": "lib/index.js", "main": "lib/index.js",

View File

@ -4,7 +4,7 @@ import { Anchor, Popover } from '../components';
const Account = ({ expanded }) => const Account = ({ expanded }) =>
expanded ? ( expanded ? (
<Popover> <Popover>
<Anchor href="/navigation/signout">Log Out</Anchor> <Anchor href="/navigation/logout">Log Out</Anchor>
</Popover> </Popover>
) : null; ) : null;