Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/vimsical/re_frame/cofx/inject.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
(re-frame/reg-event-fx
::simple-handler
[(re-frame/inject-cofx ::inject/sub [::simple]]]
(fn [{:as cofx {::keys [simple]} params]
(fn [{:as cofx ::keys [simple]} params]
...)


Expand All @@ -79,7 +79,7 @@
(fn [[_ arg1 arg2]]
...
[::dynamic arg1 arg2]))]
(fn [{:as cofx {::keys [dynamic]} [_ arg1 arg-2]]
(fn [{:as cofx ::keys [dynamic]} [_ arg1 arg-2]]
...)
"
(fn [coeffects query-vector-or-event->query-vector-fn]
Expand Down