Skip to content

Commit fa55000

Browse files
committed
remove console.log
1 parent 2a87554 commit fa55000

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/store/getFilterHistory.js

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,16 @@ export default function getFilterHistory() {
1313
&& sortUpdate(update, lastReset) < 0
1414
&& update[UPDATE_TIMESTAMP]
1515
) {
16-
// console.log('let it go', update, lastReset[1], index, false)
1716
return false
1817
}
1918

20-
// if (Math.random() < 0.01) {
21-
// console.log(update, index, state)
22-
// }
23-
2419
if (update[UPDATE_ACTION]) {
25-
if (update[UPDATE_ACTION].type === RESET /*|| update[UPDATE_ACTION].type === RANDOM*/) {
20+
if (update[UPDATE_ACTION].type === RESET || update[UPDATE_ACTION].type === RANDOM) {
2621
lastReset = update
27-
console.log('reset point found', update[UPDATE_ACTION].type, update[UPDATE_TIMESTAMP], state.length)
2822
return true
2923
}
3024
}
3125

32-
// return console.log('iltered', update, index, true) || true
3326
return true
3427
}
3528
}

0 commit comments

Comments
 (0)