(defn with-return"Returns the thought with all values in data
added to the top of its stack."[thoughtdata](if (first data)(prtc/val-fn#(update%:return(fnilinto [])data)thought)thought))
If copy-fn is used instead of val-fn (which theoretically it should be), this breaks everything. Figure out why
```clojure
(defn with-return
"Returns the thought with all values in data
added to the top of its stack."
[thought data]
(if (first data)
(prtc/val-fn
#(update % :return (fnil into []) data) thought)
thought))
```
If copy-fn is used instead of val-fn (which theoretically it should be), this breaks everything. Figure out why
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
If copy-fn is used instead of val-fn (which theoretically it should be), this breaks everything. Figure out why