Eric Whale

Fix weather API display issue

...@@ -56,11 +56,9 @@ function App() { ...@@ -56,11 +56,9 @@ function App() {
56 56
57 {!visited && !weather && !forecast && !air ? ( 57 {!visited && !weather && !forecast && !air ? (
58 <h2>Click a button for weather service!</h2> 58 <h2>Click a button for weather service!</h2>
59 - ) : ( 59 + ) : null}
60 - ""
61 - )}
62 60
63 - {visited && !weather && !forecast && !air ? <h2>Loading...</h2> : ""} 61 + {visited && !weather && !forecast && !air ? <h2>Loading...</h2> : null}
64 62
65 {!weather ? ( 63 {!weather ? (
66 "" 64 ""
......