diff --git a/packages/local-sync/src/local-sync-worker/sync-worker.es6 b/packages/local-sync/src/local-sync-worker/sync-worker.es6 index 54f8d6a43..6304e813a 100644 --- a/packages/local-sync/src/local-sync-worker/sync-worker.es6 +++ b/packages/local-sync/src/local-sync-worker/sync-worker.es6 @@ -432,7 +432,7 @@ class SyncWorker { async interrupt({reason = 'No reason'} = {}) { console.log(`🔃 Interrupting sync! Reason: ${reason}`) - const interruptPromises = [await this._interruptible.interrupt()] + const interruptPromises = [this._interruptible.interrupt()] if (this._currentTask) { interruptPromises.push(this._currentTask.interrupt()) }