aboutsummaryrefslogtreecommitdiff
path: root/test/playground
diff options
context:
space:
mode:
Diffstat (limited to 'test/playground')
-rw-r--r--test/playground/monaco.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/playground/monaco.gleam b/test/playground/monaco.gleam
index f0927ca..14958ac 100644
--- a/test/playground/monaco.gleam
+++ b/test/playground/monaco.gleam
@@ -8,7 +8,7 @@ pub external fn render (attributes: List(Attribute(action))) -> Element(action)
pub fn on_change (handler: fn (String, fn (action) -> Nil) -> Nil) -> Attribute(action) {
event.on("change", fn (e, dispatch) {
- assert Ok(code) = dynamic.string(e)
+ let assert Ok(code) = dynamic.string(e)
handler(code, dispatch)
})