From 237630054b0d2fcab327cd271573d769c03f593b Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Fri, 25 May 2018 21:16:18 -0700 Subject: [PATCH] Remove the debug text. --- Go.elm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Go.elm b/Go.elm index 9592eeb..83ad438 100644 --- a/Go.elm +++ b/Go.elm @@ -28,8 +28,7 @@ initDummy = (Model view : Model -> Html Msg view m = div [] - [ text (toString m.board) - , renderBoard m.sessionSize m.board + [ renderBoard m.sessionSize m.board ] update : Msg -> Model -> (Model, Cmd Msg)