From 5d730e588c54b237d376bf5e23c854ea6546354c Mon Sep 17 00:00:00 2001 From: Dillon Kearns Date: Fri, 20 Jan 2023 08:31:56 -0800 Subject: [PATCH] Fix types in scaffolding. --- examples/end-to-end/script/src/AddForm.elm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/end-to-end/script/src/AddForm.elm b/examples/end-to-end/script/src/AddForm.elm index 2d9fc3c4..099e2b80 100644 --- a/examples/end-to-end/script/src/AddForm.elm +++ b/examples/end-to-end/script/src/AddForm.elm @@ -305,11 +305,10 @@ createFile moduleName fields = Elm.Annotation.float FieldTime -> - Elm.Annotation.named [ "Time" ] "Posix" + Elm.Annotation.named [ "Form", "Field" ] "TimeOfDay" FieldDate -> - -- TODO fix type for DateTime - Elm.Annotation.string + Elm.Annotation.named [ "Date" ] "Date" FieldBool -> Elm.Annotation.bool