Skip to content

Commit 9a2afd9

Browse files
authored
fix: replace throw with console.error (#194)
1 parent 107ee06 commit 9a2afd9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

typescript/src/decorateProxy.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,7 @@ export const decorateLanguageService = (
9292
prevCompletionsAdditionalData = result.prevCompletionsAdditionalData
9393
return result.completions
9494
} catch (err) {
95-
setTimeout(() => {
96-
throw err as Error
97-
})
95+
console.error(err)
9896
return {
9997
entries: [
10098
{

0 commit comments

Comments
 (0)