Skip to content

Commit

Permalink
fix blunder in previous :watch fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrand committed Jun 30, 2023
1 parent ca5a3e7 commit ae1b485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clj/src/cljd/flutter.cljd
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
; or even for key names) so we must take this into account
destructuring-refresh-on
(refresh-on-expr nil &env `(let [~binding nil]
~(or binding (vec destructured-locals))))
~(if (symbol? binding) binding (vec destructured-locals))))
refresh-on
(cond
(not (and destructuring-refresh-on refresh-on))
Expand Down

0 comments on commit ae1b485

Please sign in to comment.