Skip to content

Commit

Permalink
fix: Fix reference error
Browse files Browse the repository at this point in the history
  • Loading branch information
johnedvard committed Sep 12, 2022
1 parent 28cff95 commit feddcb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ const onMonetizationProgress = () => {
if (coilBtnEl) coilBtnEl.remove();
if (coilSubEl) coilSubEl.classList.remove('hide');
const bonusItemEls = document.getElementsByClassName('bonus-item');
for (item of bonusItemEls) {
for (let item of bonusItemEls) {
item.classList.remove('disabled');
}
if (bonusItemEls && bonusItemEls.length) {
Expand Down

0 comments on commit feddcb9

Please sign in to comment.