Skip to content

Commit 4f091d4

Browse files
authored
Merge pull request #223 from sakalauskas/patch-1
Change MAX_SYNC_UPDATES to 50
2 parents 7ff7d88 + 5579b3d commit 4f091d4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20590,7 +20590,7 @@ Cogs.define("react-list.js", function (COGS_REQUIRE, COGS_REQUIRE_ASYNC, module,
2059020590
}() ? { passive: true } : false;
2059120591

2059220592
var UNSTABLE_MESSAGE = 'ReactList failed to reach a stable state.';
20593-
var MAX_SYNC_UPDATES = 100;
20593+
var MAX_SYNC_UPDATES = 50;
2059420594

2059520595
var isEqualSubset = function isEqualSubset(a, b) {
2059620596
for (var key in b) {

react-list.es6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const PASSIVE = (() => {
3232
})() ? {passive: true} : false;
3333

3434
const UNSTABLE_MESSAGE = 'ReactList failed to reach a stable state.';
35-
const MAX_SYNC_UPDATES = 100;
35+
const MAX_SYNC_UPDATES = 50;
3636

3737
const isEqualSubset = (a, b) => {
3838
for (let key in b) if (a[key] !== b[key]) return false;

react-list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
}() ? { passive: true } : false;
106106

107107
var UNSTABLE_MESSAGE = 'ReactList failed to reach a stable state.';
108-
var MAX_SYNC_UPDATES = 100;
108+
var MAX_SYNC_UPDATES = 50;
109109

110110
var isEqualSubset = function isEqualSubset(a, b) {
111111
for (var key in b) {

0 commit comments

Comments
 (0)