diff --git a/frontend/src/Main.elm b/frontend/src/Main.elm index 661a95a..27f4db2 100644 --- a/frontend/src/Main.elm +++ b/frontend/src/Main.elm @@ -195,9 +195,9 @@ type Msg update : Msg -> Model -> (Model, Cmd Msg) -update msg model = (newModel msg model, Cmd.none) +update msg model = (updateModel msg model, Cmd.none) -newModel msg model = +updateModel msg model = case msg of MapScale y -> { model | zoom = incZoom model.zoom y }