Only show user menu when successfully logged in

Closes: #814
This commit is contained in:
Eike Kettner 2021-05-22 20:30:05 +02:00
parent f91939ff5b
commit b3c73dafc0

View File

@ -36,7 +36,11 @@ topNavbar : Model -> Html Msg
topNavbar model =
case model.flags.account of
Just acc ->
topNavUser acc model
if acc.success then
topNavUser acc model
else
topNavAnon model
Nothing ->
topNavAnon model