diff options
Diffstat (limited to 'examples/05-http-requests/src')
-rw-r--r-- | examples/05-http-requests/src/app.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/05-http-requests/src/app.gleam b/examples/05-http-requests/src/app.gleam index 9442cf3..5e0df3e 100644 --- a/examples/05-http-requests/src/app.gleam +++ b/examples/05-http-requests/src/app.gleam @@ -38,7 +38,7 @@ type Quote { Quote(author: String, content: String) } -fn init(_) -> #(Model, Effect(Msg)) { +fn init(_flags) -> #(Model, Effect(Msg)) { #(Model(quote: None), effect.none()) } |