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 f6d98ec commit 9a0dc5fCopy full SHA for 9a0dc5f
packages/replay/src/replay.ts
@@ -210,13 +210,14 @@ export class ReplayContainer implements ReplayContainerInterface {
210
if (count > 500) {
211
const breadcrumb = createBreadcrumb({
212
category: 'replay.mutations',
213
- message: `A mutation with ${count} changes was recorded, which indicate slow performance.`,
+ message: `A mutation with ${count} changes was recorded, which may indicate slow performance.`,
214
data: {
215
mutationsCount: count,
216
},
217
});
218
this._createCustomBreadcrumb(breadcrumb);
219
}
220
+ // `true` means we use the regular mutation handling by rrweb
221
return true;
222
223
0 commit comments