From 9e5b3193f76b5df10c227cd05bc46066acac4e63 Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 13 Jul 2025 17:42:59 -0600 Subject: [PATCH] Fixed bug with where maps presents --- map/app/public/js/map-manager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map/app/public/js/map-manager.js b/map/app/public/js/map-manager.js index c3429f0..9078f9f 100644 --- a/map/app/public/js/map-manager.js +++ b/map/app/public/js/map-manager.js @@ -10,7 +10,7 @@ export let isStartLocationVisible = true; export async function initializeMap() { try { // Get start location from PUBLIC endpoint (not admin endpoint) - const response = await fetch('/api/config/start-location'); + const response = await fetch('/api/settings/start-location'); // Changed from /api/config/start-location const data = await response.json(); let startLat = CONFIG.DEFAULT_LAT;