Skip to content

Commit bc00bdf

Browse files
committed
Fix opt-out checkbox
1 parent 6169bff commit bc00bdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

static/privacy.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ <h2>turbowarp.org</h2>
7373
}
7474
};
7575
const checkbox = document.querySelector('.windchimes-optout');
76-
checkbox.checked = isOptedOut();
76+
checkbox.checked = !isOptedOut();
7777
checkbox.addEventListener('change', (e) => {
78-
setOptedOut(e.target.checked);
78+
setOptedOut(!e.target.checked);
7979
});
8080
})();
8181
</script>

0 commit comments

Comments
 (0)