How to prevent `Atom.optimistic` from debouncing in `@effect-atom/atom-react`?
In
If the server is slow, and I click quickly each call to
I've tried to pipe an
@effect-atom/atom-react, how do I stop Atom.optimistic from debouncing? For example if I have the following code:If the server is slow, and I click quickly each call to
updateTodoCompleted will cancel the previous. I've tried to pipe an
Effect.fork at the end of the Effect.gen but that results in nothing occuring at all ...