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 985af02 commit 8013a18Copy full SHA for 8013a18
packages/peregrine/lib/store/middleware/auth.js
@@ -64,11 +64,11 @@ const scheduleSignOut = store => next => action => {
64
intervals.set(parsedValue, intervalId);
65
}
66
} else if (isSigningOut(action.type)) {
67
- for (const timeoutId of timeouts) {
+ for (const [, timeoutId] of timeouts) {
68
clearTimeout(timeoutId);
69
70
71
- for (const intervalId of intervals) {
+ for (const [, intervalId] of intervals) {
72
clearInterval(intervalId);
73
74
0 commit comments