Skip to content

Commit 684c184

Browse files
committed
lock all
1 parent 4245574 commit 684c184

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

static/assets/scripts/helpers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ async function enforceDonationLockout() {
631631
const currentDomain = window.location.hostname;
632632

633633
// If current host is not in allowedHosts, show complete lockout and disable access
634-
if (!allowedHosts.includes(currentDomain)) {
634+
// if (!allowedHosts.includes(currentDomain)) {
635635
document.body.innerHTML = `
636636
<div style="display:flex;align-items:center;justify-content:center;height:100vh;background:#111;color:#fff;font-family:sans-serif;text-align:center;">
637637
<div>
@@ -646,7 +646,7 @@ async function enforceDonationLockout() {
646646
document.body.style.userSelect = "none";
647647
window.locked = true;
648648
return;
649-
}
649+
// }
650650
} catch (err) {
651651
console.error('Failed to check donation status:', err);
652652
}

0 commit comments

Comments
 (0)