Fix type of lat/long state 😅

This commit is contained in:
rzmk 2021-12-24 23:37:58 -05:00
parent 0a3b82fb51
commit 612f32592d

View file

@ -6,8 +6,8 @@ import ProgressBar from "./components/ProgressBar";
import "./App.css";
function App() {
const [longitude, setLongitude] = useState(0);
const [latitude, setLatitude] = useState(0);
const [longitude, setLongitude] = useState("");
const [latitude, setLatitude] = useState("");
const [progress, setProgress] = useState(0);
async function fetchISSData() {