Skip to content

Commit

Permalink
Merge pull request #45 from CodinGame/suppress-error-log
Browse files Browse the repository at this point in the history
Suppress error log
  • Loading branch information
CGNonofr authored Feb 13, 2024
2 parents c43d526 + 366772f commit b77d702
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/vscodeParts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ function createPart (part: Parts, location: ViewContainerLocation | null) {

initializePromise.then(() => {
attachPart(part, element)
}, console.error)
}, () => {
// ignore, probably part not registered
})

let counter = 0

Expand Down

0 comments on commit b77d702

Please sign in to comment.