@tamagui/core 1.91.0 → 1.91.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/native.js CHANGED
@@ -3940,7 +3940,7 @@ var require_createShallowSetState_native = __commonJS({
3940
3940
  }
3941
3941
  function mergeIfNotShallowEqual(prev, next, isDisabled, debug) {
3942
3942
  if (isDisabled || !prev || !next || isEqualShallow(prev, next))
3943
- return prev;
3943
+ return prev || next;
3944
3944
  if (process.env.NODE_ENV === "development" && debug && (console.warn("setStateShallow CHANGE", {
3945
3945
  prev,
3946
3946
  next