From b71cb1fe94a1c0a2d61197766ca8dc8435d00c37 Mon Sep 17 00:00:00 2001 From: Brandon Liu Date: Sun, 1 Jun 2025 00:14:30 -0400 Subject: [PATCH] rebase and format --- app/src/PageTile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/PageTile.tsx b/app/src/PageTile.tsx index f3ce02b..9c01fba 100644 --- a/app/src/PageTile.tsx +++ b/app/src/PageTile.tsx @@ -86,7 +86,7 @@ function parseTile(data: ArrayBuffer, vectorLayers: string[]): Layer[] { } // sort so that points and linestrings are above polygons - features.sort((a,b) => a.type > b.type ? -1 : 1); + features.sort((a, b) => (a.type > b.type ? -1 : 1)); layers.push({ name: name, features: features }); }