Skip to content

Commit

Permalink
fix rebase issues
Browse files Browse the repository at this point in the history
  • Loading branch information
flarnie committed May 26, 2018
1 parent df65a23 commit 4ac1a80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-scheduler/src/ReactScheduler.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ if (!ExecutionEnvironment.canUseDOM) {
next: null,
prev: null,
};
const timeoutId = setTimeout(() => {
const timeoutId = localSetTimeout(() => {
callback({
timeRemaining() {
return Infinity;
Expand All @@ -101,7 +101,7 @@ if (!ExecutionEnvironment.canUseDOM) {
const callback = callbackId.scheduledCallback;
const timeoutId = timeoutIds.get(callback);
timeoutIds.delete(callbackId);
clearTimeout(timeoutId);
localClearTimeout(timeoutId);
};
} else {
let headOfPendingCallbacksLinkedList: CallbackConfigType | null = null;
Expand Down

0 comments on commit 4ac1a80

Please sign in to comment.