Revert mappings variable from const to let in getAllRelays.ts

Co-authored-by: oschwartz10612 <4999704+oschwartz10612@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-07-28 17:30:21 +00:00
parent 2259879595
commit a2526ea244

View File

@@ -63,7 +63,7 @@ export async function getAllRelays(
}
// Initialize mappings object for multi-peer support
const mappings: { [key: string]: ProxyMapping } = {};
let mappings: { [key: string]: ProxyMapping } = {};
// Process each site
for (const site of sitesRes) {