Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
remove flow typings from Schedule.js
  • Loading branch information
alexeyraspopov authored Sep 15, 2018
commit 73e9081349b645bdf188d00c9578e772e8782bad
2 changes: 1 addition & 1 deletion packages/schedule/src/Schedule.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ function unstable_scheduleWork(callback, options) {
return newNode;
}

function unstable_cancelScheduledWork(callbackNode: CallbackNode): void {
function unstable_cancelScheduledWork(callbackNode) {
var next = callbackNode.next;
if (next === null) {
// Already cancelled.
Expand Down