Toggle navigation
Toggle navigation
This project
Loading...
Sign in
황선혁
/
weather_chatbot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Eric Whale
2022-06-07 21:50:08 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b8783484611639be3a5c8c5352abe4cb911941c3
b8783484
1 parent
a0d1b0b3
Fix weather API display issue
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
client/src/App.js
client/src/App.js
View file @
b878348
...
...
@@ -56,11 +56,9 @@ function App() {
{
!
visited
&&
!
weather
&&
!
forecast
&&
!
air
?
(
<
h2
>
Click
a
button
for
weather
service
!<
/h2
>
)
:
(
""
)}
)
:
null
}
{
visited
&&
!
weather
&&
!
forecast
&&
!
air
?
<
h2
>
Loading
...
<
/h2> :
""
}
{
visited
&&
!
weather
&&
!
forecast
&&
!
air
?
<
h2
>
Loading
...
<
/h2> :
null
}
{
!
weather
?
(
""
...
...
Please
register
or
login
to post a comment