chore(desktop): use dot access for host header assignment (#1548)

This commit is contained in:
Will Pfleger
2026-07-06 13:58:15 -04:00
committed by GitHub
parent c2ee4d1627
commit ccfdf45bc5
@@ -145,7 +145,7 @@ test("MEASURE: scroll-back pagination latency in target channel", async ({
delete fwd["sec-ch-ua"];
delete fwd["sec-ch-ua-mobile"];
delete fwd["sec-ch-ua-platform"];
if (COMMUNITY_HOST) fwd["host"] = COMMUNITY_HOST;
if (COMMUNITY_HOST) fwd.host = COMMUNITY_HOST;
const resp = await route.fetch({ headers: fwd });
const ms = Date.now() - t0;
const buf = await resp.body();