diff --git a/app/routes/analyze.tsx b/app/routes/analyze.tsx index b173ca9..14b5151 100644 --- a/app/routes/analyze.tsx +++ b/app/routes/analyze.tsx @@ -92,7 +92,7 @@ export default function Analyze() { value={state.ticker} onChange={(e) => setState((s) => ({ ...s, ticker: e.target.value.toUpperCase() }))} placeholder="AAPL" - className="border border-gray-300 rounded-lg px-4 py-2 focus:ring-2 focus:ring-blue-500" + className="border border-gray-300 rounded-lg px-4 py-2 focus:ring-2 focus:ring-blue-500 text-gray-900" required /> @@ -102,7 +102,7 @@ export default function Analyze() { type="date" value={state.date} onChange={(e) => setState((s) => ({ ...s, date: e.target.value }))} - className="border border-gray-300 rounded-lg px-4 py-2 focus:ring-2 focus:ring-blue-500" + className="border border-gray-300 rounded-lg px-4 py-2 focus:ring-2 focus:ring-blue-500 text-gray-900" />