Fix missing text-foreground on time bank unit select

The seconds/minutes/hours select in the time bank dialog had
bg-background but was missing text-foreground, causing text
color to fall back to browser default in dark mode.

https://claude.ai/code/session_01FZz7kndEqWqFScyq4R6Wxn
This commit is contained in:
Claude 2026-02-23 01:56:48 +00:00
parent f624e9d425
commit 5d72c52417
No known key found for this signature in database

View file

@ -1570,7 +1570,7 @@ export default function DraftRoom() {
onChange={(e) => onChange={(e) =>
setTimeBankUnit(e.target.value as "seconds" | "minutes" | "hours") setTimeBankUnit(e.target.value as "seconds" | "minutes" | "hours")
} }
className="px-3 py-2 border rounded-md bg-background text-sm" className="px-3 py-2 border rounded-md bg-background text-foreground text-sm"
> >
<option value="seconds">Seconds</option> <option value="seconds">Seconds</option>
<option value="minutes">Minutes</option> <option value="minutes">Minutes</option>