From ac8c83b04ac2c918af59a2dec43e967a3ea3ec52 Mon Sep 17 00:00:00 2001 From: Hvard Bjerke Date: Sun, 3 Nov 2024 15:31:44 +0100 Subject: [PATCH] refactor: apply lint conditions --- src/components/gpx-map.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/components/gpx-map.tsx b/src/components/gpx-map.tsx index ef56e12..bd7d8d1 100644 --- a/src/components/gpx-map.tsx +++ b/src/components/gpx-map.tsx @@ -57,12 +57,7 @@ export function GpxMap({ onDataLoad: onGpxLoad, }); - const layers = [ - ...baseLayers, - ...auxLayers, - gpxLayer, - ...annotationLayers, - ]; + const layers = [...baseLayers, ...auxLayers, gpxLayer, ...annotationLayers]; return (