aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/View/Header.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/elm/View/Header.elm')
-rw-r--r--src/client/elm/View/Header.elm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/elm/View/Header.elm b/src/client/elm/View/Header.elm
index 94bdb01..0cc2137 100644
--- a/src/client/elm/View/Header.elm
+++ b/src/client/elm/View/Header.elm
@@ -6,7 +6,7 @@ import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
-import Persona exposing (operations)
+import ServerCommunication as SC exposing (serverCommunications)
import Model exposing (Model)
import Model.View exposing (..)
@@ -25,7 +25,7 @@ renderHeader model =
LoggedInView _ ->
button
[ class "icon"
- , onClick operations.address Persona.SignOut
+ , onClick serverCommunications.address SC.SignOut
]
[ renderIcon "power-off" ]
_ ->