diff --git a/progress/internal/linear-progress.ts b/progress/internal/linear-progress.ts index 555e32669..7eb9c5a49 100644 --- a/progress/internal/linear-progress.ts +++ b/progress/internal/linear-progress.ts @@ -30,7 +30,7 @@ export class LinearProgress extends Progress { }%)`, }; - const bufferValue = Math.min(this.buffer ?? 0, this.max); + const bufferValue = this.buffer ?? 0; const hasBuffer = bufferValue > 0; const dotSize = this.indeterminate || !hasBuffer ? 1 : bufferValue / this.max;