Skip to content

Commit 108bfd1

Browse files
author
Paul Philion
committed
Fixed prettier formatting
1 parent 70acd2e commit 108bfd1

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/leaflet-component/site-marker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ export function siteMarker(
5858
signal strength: ${round2(summary?.dbm * MULTIPLIERS.dbm)} ${UNITS.dbm}<br/>
5959
ping: ${round2(summary?.ping * MULTIPLIERS.ping)} ${UNITS.ping}<br/>
6060
upload speed: ${round2(summary?.upload_speed * MULTIPLIERS.upload_speed)} ${
61-
UNITS.upload_speed
62-
}<br/>
61+
UNITS.upload_speed
62+
}<br/>
6363
download speed: ${round2(
6464
summary?.download_speed * MULTIPLIERS.download_speed,
6565
)} ${UNITS.download_speed}`,

src/vis/MeasurementMap.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@ import { GeoSearchControl, OpenStreetMapProvider } from 'leaflet-geosearch';
1717
import 'leaflet-geosearch/dist/geosearch.css';
1818

1919
// Updated with details from: https://stadiamaps.com/stamen/onboarding/migrate/
20-
const ATTRIBUTION = '&copy; <a href="https://stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
20+
const ATTRIBUTION =
21+
'&copy; <a href="https://stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
2122
'&copy; <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
2223
'&copy; <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
2324
'&copy; <a href="https://www.openstreetmap.org/about/" target="_blank">OpenStreetMap contributors</a>';
2425

25-
const URL = `https://tiles.stadiamaps.com/tiles/stamen_toner_lite/{z}/{x}/{y}${
26-
devicePixelRatio > 1 ? '@2x' : ''
27-
}.png`;
26+
const URL = `https://tiles.stadiamaps.com/tiles/stamen_toner_lite/{z}/{x}/{y}${
27+
devicePixelRatio > 1 ? '@2x' : ''
28+
}.png`;
2829

2930
const BIN_SIZE_SHIFT = 0;
3031
const DEFAULT_ZOOM = 10;

0 commit comments

Comments
 (0)