repos / starfx

supercharged async flow control library.
git clone https://github.com/neurosnap/starfx.git

commit
bb56c4c
parent
064d6fe
author
Eric Bower
date
2024-01-03 19:46:43 +0000 UTC
fix: flatten PersistGate elements
1 files changed,  +1, -1
M store/react.ts
+1, -1
1@@ -28,5 +28,5 @@ export function PersistGate(
2     return loading;
3   }
4 
5-  return React.createElement("div", null, children);
6+  return children;
7 }