From 330e69bf902a694d9b7cbe598dea920f0e39f155 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Mon, 28 Jul 2025 07:52:06 -0500 Subject: [PATCH] Fix syntax error in map.ts - remove extra closing brace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed extra closing brace that was prematurely ending the try block and causing build failure. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- assets/js/map.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/assets/js/map.ts b/assets/js/map.ts index 5213810..f32f16f 100644 --- a/assets/js/map.ts +++ b/assets/js/map.ts @@ -325,7 +325,6 @@ let MapAPRSMap = { retryCount.delete(src); } }); - } tileLayer.addTo(self.map); } catch (error) {