This commit is contained in:
Timothy J. Baek
2024-06-12 03:13:59 -07:00
parent 7131ac24a7
commit c7d3969a53
2 changed files with 49 additions and 40 deletions

View File

@@ -129,7 +129,7 @@
const progressBar = document.getElementById('progress-bar');
if (progressBar) {
progressBar.style.width = `${value * 0.24}rem`;
progressBar.style.width = `${value}%`;
}
});