diff --git a/.changeset/funny-rabbits-walk.md b/.changeset/funny-rabbits-walk.md new file mode 100644 index 00000000000..a21c89ca4a9 --- /dev/null +++ b/.changeset/funny-rabbits-walk.md @@ -0,0 +1,5 @@ +--- +"saleor-dashboard": patch +--- + +Add "ResizeObserver loop limit exceeded" to ignored in Sentry. Error is thrown only during Cypress tests that will be soon migrated and we could remove error from ignored. diff --git a/src/services/errorTracking/adapters/Sentry.ts b/src/services/errorTracking/adapters/Sentry.ts index a670ef0ff41..a08ab33f9d8 100644 --- a/src/services/errorTracking/adapters/Sentry.ts +++ b/src/services/errorTracking/adapters/Sentry.ts @@ -13,7 +13,11 @@ export const SentryAdapter = (config: Config): TrackerMethods => { Sentry.init({ dsn: config.dsn, environment: config.environment, - ignoreErrors: ["Editor's content can not be saved in read-only mode"], + ignoreErrors: [ + "Editor's content can not be saved in read-only mode", + // TODO: rmoeve after Cypress migation + "ResizeObserver loop limit exceeded", + ], }); return true; }