diff options
Diffstat (limited to 'examples/07-routing')
-rw-r--r-- | examples/07-routing/src/app.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/07-routing/src/app.gleam b/examples/07-routing/src/app.gleam index e82f895..fbdc786 100644 --- a/examples/07-routing/src/app.gleam +++ b/examples/07-routing/src/app.gleam @@ -44,7 +44,7 @@ type Guest { Guest(slug: String, name: String) } -fn init(_) -> #(Model, Effect(Msg)) { +fn init(_flags) -> #(Model, Effect(Msg)) { #( Model( current_route: Home, |