diff --git a/README.md b/README.md index 5bcbe8d..cf725cf 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,8 @@ In the interest of time, I elected to omit things that would be nice to have but - My open search api key is exposed in the frontend JS code. Theoretically, I could create a server with apis that call out to Open Weather. And thus avoid passing my api key to the frontend. The worst can happen here is, that someone steals the key and I run out of free credits. I won't be charged for calls. For a production app, I would definitely introduce a server. -- Temperatures are in Farenheit, can't request Celsius currently. +- Temperatures are in Farenheit, no way to toggle to Celsius currently. + - The search query doesn't handle abbreviated state codes. e.g. "Chattanooga, Tennessee", or "Chattanooga" yields search results. diff --git a/src/components/WeatherDashboard.tsx b/src/components/WeatherDashboard.tsx index 765b6d7..ba34374 100644 --- a/src/components/WeatherDashboard.tsx +++ b/src/components/WeatherDashboard.tsx @@ -10,7 +10,7 @@ export default function WeatherDashboard() { const [dashboard, updateDashboard] = useDashboardState(); return (
-
+
Weather Dashboard