Lucy Wang

Results 37 comments of Lucy Wang

> We encourage community members to open an issue first regarding proposed changes, giving other community members a chance to contribute ideas/experience reports/etc. It also lets core contributors a chance...

Thanks @ddeaguiar ! I submitted the CLA.

Thanks @bonkydog !

Yeah it happens consistently, for all clojure repl processes (lein or shadow). Thanks for the debug tip, I'll try that.

Have you tried to change this ```clojure (defmodel Review :reviews) ``` to ```clojure (defmodel Review :review) ```

Regarding, your example code, ```clojure (defn todo-screen [] (let [value (r/atom nil)] ``` I think you should be using `with-let` here, right? Otherwise the ratom would be recreated every time...

Great findings! > This also explains why the code from the previous comments "works". It's because the element gets re-rendered on every invocation. This still can not explain ... when...

> Option to disable async rendering could be useful, but would require big refactoring of Reagent implementation. Two noob questions 1. does reagent really need to add a batch/async re-rendering...