Skip to content

Commit

Permalink
remove the code that forced linter to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra committed Oct 24, 2023
1 parent 23ed41a commit 32dd28f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/extensions/replay/sessionrecording.ts
Original file line number Diff line number Diff line change
Expand Up @@ -598,10 +598,6 @@ export class SessionRecording {
const isBelowMinimumDuration =
_isNumber(minimumDuration) && _isNumber(sessionDuration) && sessionDuration < minimumDuration

if (minimumDuration === null || sessionDuration === null) {
logger.warn(`ESLint should fail in CI`)
}

if (this.status === 'buffering' || isBelowMinimumDuration) {
this.flushBufferTimer = setTimeout(() => {
this._flushBuffer()
Expand Down

0 comments on commit 32dd28f

Please sign in to comment.