Skip to content

Commit e7bb00d

Browse files
committed
Apply suggestions from code review
1 parent 9fbbd5a commit e7bb00d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/replay/src/replay.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,13 +204,14 @@ export class ReplayContainer implements ReplayContainerInterface {
204204
if (count > 500) {
205205
const breadcrumb = createBreadcrumb({
206206
category: 'replay.mutations',
207-
message: `A mutation with ${count} changes was recorded, which indicate slow performance.`,
207+
message: `A mutation with ${count} changes was recorded, which may indicate slow performance.`,
208208
data: {
209209
mutationsCount: count,
210210
},
211211
});
212212
this._createCustomBreadcrumb(breadcrumb);
213213
}
214+
// `true` means we use the regular mutation handling by rrweb
214215
return true;
215216
},
216217
});

0 commit comments

Comments
 (0)