diff --git a/frontend/src/features/stations/utils/maps-loader.ts b/frontend/src/features/stations/utils/maps-loader.ts index e9a1df4..8ce86b1 100644 --- a/frontend/src/features/stations/utils/maps-loader.ts +++ b/frontend/src/features/stations/utils/maps-loader.ts @@ -37,7 +37,7 @@ export function loadGoogleMaps(): Promise { // Create script tag const script = document.createElement('script'); - script.src = `https://maps.googleapis.com/maps/api/js?key=${apiKey}&libraries=places`; + script.src = `https://maps.googleapis.com/maps/api/js?key=${apiKey}&loading=async&libraries=places`; script.async = true; script.defer = true;