Kurtis Rainbolt-Greene
Kurtis Rainbolt-Greene
Okay so `useRecoilCallback()` and `useRecoilTransactionObserver()` don't work in the server, just like `useEffect()`. Turns out I just misunderstood `useRecoilCallback()`, but it still seems that `snapshot.getPromise(atom)` returns undefined, when it definitely...
For clarity on the situation, this is my tree: ``` ``` So `RecoilStateHydrater` is a component that takes a `Map` and is supposed to use these snapshot APIs to generate...
FWIW, I know this isn't a priority and I know that there are changes coming that make this easier, so I don't expect this to be solved over night, this...
I hear ya, there's not an incredibly compelling reason for it other than it mimes other active record interfaces (and ones they've recently introduced as an addition, see: `add_foreign_key` and...
If a full path works it would be a non-starter for me since I don't do global installs :(
There's also this: ``` ruby module Architect module Replicatable private def clone @clone end private def origin @origin end end end ``` First `⌘` + `c` then `⌘` + `v`:...
This bug honestly has cost me 10% of my development time today.
Please accept this, in light of the newest patchset that doesnt work with debugger.
It uses snabbdom.
So just to throw in my two cents implementation: This is what I end up doing: ``` ruby class Accounts < Crepe::API puts do Account::Control::Create.new(payload: Account::Normalizer::Create.new(params)) end end ``` If...