From 122f3d19af5f7bb41434888e616e266abb1919dc Mon Sep 17 00:00:00 2001 From: Dillon Kearns Date: Tue, 28 Feb 2023 17:02:17 -0800 Subject: [PATCH] Fix imports in Scaffold helper. --- src/Scaffold/Route.elm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Scaffold/Route.elm b/src/Scaffold/Route.elm index 142c5e36..f91504aa 100644 --- a/src/Scaffold/Route.elm +++ b/src/Scaffold/Route.elm @@ -560,8 +560,8 @@ userFunction moduleName definitions = |> Elm.withType (Elm.Annotation.namedWith [ "View" ] "View" - [ Elm.Annotation.namedWith [ "Pages", "Msg" ] - "Msg" + [ Elm.Annotation.namedWith [ "PagesMsg" ] + "PagesMsg" [ localType "Msg" ] ] @@ -1164,8 +1164,8 @@ buildWithLocalState_ buildWithLocalStateArg buildWithLocalStateArg0 = [ "View" ] "View" [ Elm.Annotation.namedWith - [ "Pages", "Msg" ] - "Msg" + [ "PagesMsg" ] + "PagesMsg" [ Elm.Annotation.var "msg" ] ] ) @@ -1406,8 +1406,8 @@ buildNoState_ buildNoStateArg buildNoStateArg0 = [ "View" ] "View" [ Elm.Annotation.namedWith - [ "Pages", "Msg" ] - "Msg" + [ "PagesMsg" ] + "PagesMsg" [ Elm.Annotation.unit ] ] )