Skip to content

Commit

Permalink
💅
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkerlucio committed Aug 24, 2024
1 parent 8960b70 commit 3f5451a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/main/com/wsscode/pathom3/connect/planner.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -1774,11 +1774,7 @@
(if (> (count node-ids) 1)
(let [params (transduce (map #(get-node graph' % ::params)) merge node-ids)]
(if (seq params)
(reduce
(fn [graph'' node-id]
(assoc-node graph'' node-id ::params params))
graph'
node-ids)
(reduce #(assoc-node % %2 ::params params) graph' node-ids)
graph'))
graph'))
graph
Expand Down

0 comments on commit 3f5451a

Please sign in to comment.