Skip to content

Commit

Permalink
Use clearer reference
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbvz committed Feb 7, 2025
1 parent ae77c3f commit 569d694
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class DocumentPasteProvider implements vscode.DocumentPasteEditProvider<TsPasteE
const response = await raceTimeout(pasteOperation, pasteTimeout);
if (response) {
// Success, can return real paste edit.
const edit = TsPendingPasteEdit.tryCreateFromResponse(this._client, response);
const edit = TsPasteEdit.tryCreateFromResponse(this._client, response);
return edit ? [edit] : undefined;
} else {
// Still waiting on the response. Eagerly return a paste edit that we will resolve when we
Expand Down

0 comments on commit 569d694

Please sign in to comment.