We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8af5c10 commit 79813afCopy full SHA for 79813af
nuxt.config.js
@@ -540,6 +540,18 @@ module.exports = {
540
return false
541
}
542
543
+ } else if (
544
+ hint.originalException.name === 'UnhandledRejection' &&
545
+ hint.originalException.message.indexOf(
546
+ 'Object Not Found Matching Id'
547
+ ) === 0
548
+ ) {
549
+ // This seems to be a spurious error caused by a password manager. SEe
550
+ // https://github.com/getsentry/sentry-javascript/issues/3440
551
+ console.log(
552
+ 'Suppress Object Not Found Matching Id, probable password manager'
553
+ )
554
+ return false
555
556
557
0 commit comments