From a5d1fb9c6fce0970ae8fa07027b562bcacd6732d Mon Sep 17 00:00:00 2001 From: Szymon Porwolik Date: Mon, 10 Nov 2025 14:01:07 +0100 Subject: [PATCH] Quick fix --- assets/js/radiohelpers.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assets/js/radiohelpers.js b/assets/js/radiohelpers.js index 01c5f73c7..a5d146a7a 100644 --- a/assets/js/radiohelpers.js +++ b/assets/js/radiohelpers.js @@ -395,8 +395,7 @@ function determineSSBMode(frequency) { * @param {string} band - Band identifier (e.g., '20m', '2m', '70cm', '13cm') * @returns {string|null} Band group name or null if band not found */ -function -(band) { +function getBandGroup(band) { for (const [group, bands] of Object.entries(BAND_GROUPS)) { if (bands.includes(band)) return group; }