We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73822b2 commit 199dd69Copy full SHA for 199dd69
.changeset/fresh-apricots-remain.md
@@ -0,0 +1,5 @@
1
+---
2
+"solid-js": patch
3
4
+
5
+fix reconcile null guard
packages/solid/store/src/modifiers.ts
@@ -54,7 +54,7 @@ function applyState(
54
end >= start &&
55
newEnd >= start &&
56
(previous[end] === target[newEnd] ||
57
- (key && previous[start] && target[start] && previous[end][key] === target[newEnd][key]));
+ (key && previous[end] && target[newEnd] && previous[end][key] === target[newEnd][key]));
58
end--, newEnd--
59
) {
60
temp[newEnd] = previous[end];
0 commit comments