diff --git a/src/main/resources/static/details.js b/src/main/resources/static/details.js index edbe5a6..0c566ac 100644 --- a/src/main/resources/static/details.js +++ b/src/main/resources/static/details.js @@ -87,7 +87,6 @@ rating.addEventListener("mousemove", (event) => { if (!dataset.storageGetKey("is-rated", false)) { let bounds = rating.getBoundingClientRect(); currentRating = Math.round(((event.clientX - bounds.left) / bounds.width) * 5); - console.log(currentRating); rating.value = currentRating; }