mirror of
https://github.com/purrgrammer/grimoire.git
synced 2026-04-10 23:47:12 +02:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user