Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamSwayne committed Mar 9, 2024
1 parent c368a53 commit 4f499b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function updateOrganizationQuantity(sliderId, outputId) {
const slider = document.getElementById(sliderId);
const output = document.getElementById(outputId);
const sliderValue = Math.round(Math.pow(sliderScalar, slider.value));
output.textContent = `${sliderValue - 1} Donations`;
output.textContent = `${sliderValue - 1} Trees`;
calculateResults();
}

Expand Down

0 comments on commit 4f499b3

Please sign in to comment.