Skip to content

Commit

Permalink
Merge pull request #190161 from microsoft/aiday/fixingMonacoEditorError
Browse files Browse the repository at this point in the history
Fixing the cancellation error on quick typing in sticky scroll
  • Loading branch information
aiday-mar authored Aug 11, 2023
2 parents b057249 + 20d5e4e commit 6e2cace
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ export class StickyModelProvider implements IStickyModelProvider {
}
}
return null;
}).catch((error) => {
onUnexpectedError(error);
return null;
});
}
}
Expand Down

0 comments on commit 6e2cace

Please sign in to comment.