diff --git a/app/components/WeatherSearchForm.tsx b/app/components/WeatherSearchForm.tsx index 7b7b746..bf6ea5c 100644 --- a/app/components/WeatherSearchForm.tsx +++ b/app/components/WeatherSearchForm.tsx @@ -46,57 +46,46 @@ export function WeatherSearchForm() { await searchWeather(trimmedCity); } - return ( -
-
-
-
- -
- + return ( +
+ +
+
+
- {inputError && ( -
- -

{inputError}

-
- - - ) - } - -
-
+ {inputError && ( +
+ +

{inputError}

+
+ ) + } +
+ + {currentWeather && ( + - {currentWeather && ( - - )} -
- - - -
- - - + )} +
+ +
) - } - - +} \ No newline at end of file