Skip to content

Commit

Permalink
update max buffer size
Browse files Browse the repository at this point in the history
  • Loading branch information
silesky committed Oct 29, 2024
1 parent 17a7fc9 commit f8cf370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/signals/signals/src/core/buffer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class SignalStore implements SignalPersistentStorage {
}

constructor(settings: { maxBufferSize?: number } = {}) {
this.maxBufferSize = settings.maxBufferSize ?? 100 // TODO: increase this number after development
this.maxBufferSize = settings.maxBufferSize ?? 100
this.signalStore = this.createSignalStore()
void this.initializeSignalCount()
}
Expand Down

0 comments on commit f8cf370

Please sign in to comment.