diff --git a/site/views/progress-bar.js b/site/views/progress-bar.js index 2ad021c..44e665d 100644 --- a/site/views/progress-bar.js +++ b/site/views/progress-bar.js @@ -15,7 +15,7 @@ class ProgressBar { addStep() { this.progress += this.step; this.progressBar.style.transform = `scaleX(${this.progress / 100})`; - if (this.progress >= 100) { + if (this.progress >= 99) { this.finished(); } }