Skip to content

Commit

Permalink
disambiguate bytes variable like above
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk committed Feb 7, 2025
1 parent c6b5c67 commit bf22d13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/title/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ async function getInputFiles(
(f: Feature) => f.properties!.kind == "study_area_boundary",
)!;
let resp = await safeFetch(overpassQueryForPolygon(study_area_boundary));
let bytes = await resp.arrayBuffer();
return [bytes, null, study_area_boundary];
let osmBytes = await resp.arrayBuffer();
return [osmBytes, null, study_area_boundary];
}
}

Expand Down

0 comments on commit bf22d13

Please sign in to comment.