useEffect(() => { alert('Requested data from server...'); get(forecastType).then((response) => { setData(response.data); }); }, [forecastType]);