diff --git a/client/src/components/masterplanPage/map/Map.tsx b/client/src/components/masterplanPage/map/Map.tsx index 3636a47..8c0f545 100644 --- a/client/src/components/masterplanPage/map/Map.tsx +++ b/client/src/components/masterplanPage/map/Map.tsx @@ -6,8 +6,6 @@ import { markers } from "../../../consts/markers"; import useMarker from "../../../store/useMarker"; import ZoomControlls from "./ZoomControlls"; import { Clouds } from "./Clouds"; -import { getWeather } from "../../../api/weather"; -import { useEffect } from "react"; import WeatherWidget from "./WeatherWidget"; const Map = () => { @@ -21,12 +19,6 @@ const Map = () => { }; }); - useEffect(() => { - getWeather().then((data) => { - console.log(data); - }); - }, []); - return (
8