Skip to content

Commit 25db486

Browse files
committed
ts
1 parent 12eb5b9 commit 25db486

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/replay/src/replay.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@ export class ReplayContainer implements ReplayContainerInterface {
203203
// Without this, it would record forever, until an error happens, which we don't want
204204
// instead, we'll always keep the last 60 seconds of replay before an error happened
205205
...(this.recordingMode === 'error' && { checkoutEveryNms: ERROR_CHECKOUT_TIME }),
206-
recordCrossOriginIframes: true,
207206
emit: this._handleRecordingEmit,
208207
});
209208
} catch (err) {
@@ -529,6 +528,7 @@ export class ReplayContainer implements ReplayContainerInterface {
529528
return;
530529
}
531530

531+
// @ts-ignore debugging
532532
if (event.type === EventType.IncrementalSnapshot && event.data.source === IncrementalSource.Input) {
533533
console.log(JSON.stringify(event));
534534
}

0 commit comments

Comments
 (0)