From 1bca64c181fe105137e869e7ee62df5c3a45ee50 Mon Sep 17 00:00:00 2001 From: tarunsinghofficial Date: Tue, 10 Sep 2024 19:42:11 +0530 Subject: [PATCH] fix: stopname styled to black color in dark mode --- src/components/map/RouteMap.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/map/RouteMap.svelte b/src/components/map/RouteMap.svelte index e3997ac..a7e65be 100644 --- a/src/components/map/RouteMap.svelte +++ b/src/components/map/RouteMap.svelte @@ -74,7 +74,7 @@ infoWindow = new google.maps.InfoWindow({ content: `
-

${stop.name}

+

${stop.name}

Arrival time: ${new Date(stopTime.arrivalTime * 1000).toLocaleTimeString()}

` });