Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
electric: fixes
e/amb
by propagating siting
This worked `(do (e/server (d/pull db x)))` This didn't `(do (e/server (d/pull db x)) nil)` `(do a b)` expands to `(e/amb (e/drain a) b)`. `e/amb` wraps a and b into ctors. Ctors clear siting. This fix propagates the site into the ctors.
- Loading branch information