Reactjs – Cannot make React axios work when doing two GETs in a row
I am working with OpenWeatherMap in order to grab the current weather of, say, Helsinki. My latest MNWE (N as non) is: import axios from 'axios' const apiKey = import.meta.env.VITE_OWM_API_KEY const getCityCoordinatesApiUrl = (city) => { return `https://api.openweathermap.org/data/2.5/weather?q=${city}&appid=${apiKey}` } const…