We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29e3bfe commit c60e096Copy full SHA for c60e096
src/re_frame/fx.cljc
@@ -120,4 +120,5 @@
120
(console :error "re-frame: no effects handler registered for: " key ". Ignoring")))
121
world {:db @app-db}]
122
(->> (handler world event-vec) ;; is expected to return a map of effects
123
- (doall run-effect))))) ;; process the returned effects
+ (map run-effect) ;; process the returned effects
124
+ doall))))
0 commit comments