aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Model.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/elm/Model.elm')
-rw-r--r--src/client/elm/Model.elm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/elm/Model.elm b/src/client/elm/Model.elm
index e006e97..9e3f4a0 100644
--- a/src/client/elm/Model.elm
+++ b/src/client/elm/Model.elm
@@ -7,7 +7,7 @@ import Time exposing (Time)
import Json.Decode as Json
import TransitRouter
-import Route exposing (..)
+import Route exposing (Route)
import Model.View exposing (..)
import Model.Translations exposing (..)
@@ -40,5 +40,5 @@ initialModel initialTime translations conf mbSignInError =
case Json.decodeString confDecoder conf of
Ok conf -> conf
Err _ -> { currency = "" }
- , transitRouter = TransitRouter.empty Home
+ , transitRouter = TransitRouter.empty Route.Empty
}