From 612f32592d5d2f850df77d085516d640cef5df3b Mon Sep 17 00:00:00 2001 From: rzmk Date: Fri, 24 Dec 2021 23:37:58 -0500 Subject: [PATCH] Fix type of lat/long state :sweat_smile: --- src/App.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.js b/src/App.js index b370786..af91d0f 100644 --- a/src/App.js +++ b/src/App.js @@ -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() {