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 bedb0fe commit e2b692cCopy full SHA for e2b692c
packages/replay/src/eventBuffer/EventBufferArray.ts
@@ -20,7 +20,7 @@ export class EventBufferArray implements EventBuffer {
20
21
/** @inheritdoc */
22
public get type(): EventBufferType {
23
- return 'default';
+ return 'sync';
24
}
25
26
packages/replay/src/types.ts
@@ -445,7 +445,7 @@ export interface Session {
445
shouldRefresh: boolean;
446
447
448
-export type EventBufferType = 'default' | 'worker';
+export type EventBufferType = 'sync' | 'worker';
449
450
export interface EventBuffer {
451
/**
0 commit comments