Remove unnecessary variable

This commit is contained in:
Kimmo Puputti 2017-06-21 20:38:43 +03:00
parent ae3822d48c
commit 7fea3c3991

View file

@ -96,12 +96,11 @@ export const AuthenticationPageComponent = props => {
},
},
];
const nav = <TabNav tabs={tabs} />;
return (
<PageLayout title={title}>
<div className={css.root}>
{nav}
<TabNav tabs={tabs} />
{loginError ? loginErrorMessage : null}
{signupError ? signupErrorMessage : null}
{isLogin