tamagui 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
@@ -4037,7 +4037,7 @@ var require_createShallowSetState_native = __commonJS({
4037
4037
  }
4038
4038
  function mergeIfNotShallowEqual(prev, next, isDisabled, debug) {
4039
4039
  if (isDisabled || !prev || !next || isEqualShallow(prev, next))
4040
- return prev;
4040
+ return prev || next;
4041
4041
  if (process.env.NODE_ENV === "development" && debug && (console.warn("setStateShallow CHANGE", {
4042
4042
  prev,
4043
4043
  next