fix: change grimRelays from let to const in supporters.ts

Fix lint error from rebase - grimRelays is never reassigned so it should
use const instead of let.
This commit is contained in:
Claude
2026-01-19 15:26:45 +00:00
parent 13cf16947b
commit d22d521b23

View File

@@ -70,7 +70,7 @@ class SupportersService {
private async subscribeToZapReceipts() {
try {
// Start with hardcoded relays for immediate cold start
let grimRelays = [...GRIMOIRE_ZAP_RELAYS];
const grimRelays = [...GRIMOIRE_ZAP_RELAYS];
// Fetch relay list in background (non-blocking)
// Don't await - let it happen in parallel with subscription