Skip to content

Commit

Permalink
Fix snail hiding bug
Browse files Browse the repository at this point in the history
  • Loading branch information
WesleyMcGinn committed Jun 30, 2023
1 parent b55ce46 commit e63d88d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function setup() {
if (snail == "none" || snail == "no" || snail == "disabled") {
document.getElementsByClassName("snail")[0].style.display = "none";
} else {
document.getElementsByClassName("snail")[0].style.display = '';
document.getElementsByClassName("snail").style.display = '';
}
}
if (!showMessage()) {
Expand Down

0 comments on commit e63d88d

Please sign in to comment.