Skip to content

Commit 0bfbec8

Browse files
committed
forgot to add a setter
1 parent 863baad commit 0bfbec8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/replay-internal/src/eventBuffer/EventBufferProxy.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ export class EventBufferProxy implements EventBuffer {
3030
return this._used.waitForCheckout;
3131
}
3232

33+
/** @inheritdoc */
34+
public set waitForCheckout(value: boolean) {
35+
this._used.waitForCheckout = value;
36+
}
37+
3338
/** @inheritdoc */
3439
public get type(): EventBufferType {
3540
return this._used.type;

0 commit comments

Comments
 (0)