From 522bc4bffdb9e71dbe949002f3a6601362b24fb4 Mon Sep 17 00:00:00 2001 From: Scott Anderson <662325+scottanderson@users.noreply.github.com> Date: Mon, 14 Apr 2025 21:00:34 -0400 Subject: [PATCH] Util --- src/core/execution/Util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/execution/Util.ts b/src/core/execution/Util.ts index 2a1d86e3f..f1b6e87eb 100644 --- a/src/core/execution/Util.ts +++ b/src/core/execution/Util.ts @@ -14,7 +14,7 @@ export function closestTwoTiles( const xSorted = Array.from(x).sort((a, b) => gm.x(a) - gm.x(b)); const ySorted = Array.from(y).sort((a, b) => gm.x(a) - gm.x(b)); - if (xSorted.length == 0 || ySorted.length == 0) { + if (xSorted.length === 0 || ySorted.length === 0) { return null; }