fullscreen prompt cookie saving, and more...

This commit is contained in:
legop3
2026-05-19 21:52:03 -04:00
parent 3a2c1bee35
commit 064aaee76c
11 changed files with 183 additions and 186 deletions
@@ -114,7 +114,7 @@ function buildVoteStatus() {
else noCount += 1;
});
const onlineCount = yesCount + noCount;
const gatePassed = yesCount > noCount;
const gatePassed = eligibleCount === 0 ? true : yesCount > noCount;
return {
yesCount,
noCount,