fix(curriculum): typo in lab weather app (#59950)

This commit is contained in:
Clarence 2025-04-24 15:32:56 +01:00 committed by GitHub
parent d2bd2a63c0
commit 07c45a1ac4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,7 +84,7 @@ You will use a weather API. The output data has the following format:
1. If the `getWeather` function had an error, the app should only show an alert that says `Something went wrong, please try again later`.
1. If the data from `getWeather` are usable, the `showWeather` function should display the weather data in the corresponding elements. If a certain value from the API is `undefined`, you should write `N/A` in the corresponsing element.
1. If the data from `getWeather` are usable, the `showWeather` function should display the weather data in the corresponding elements. If a certain value from the API is `undefined`, you should write `N/A` in the corresponding element.
NOTE: The tests will take time to complete. As long as you see `// running tests` in the console, they are being executed.