diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-14 21:34:49 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-14 21:34:49 -0800 |
| commit | 6e28d1530aa08b878f5082bbcd85a95f84f830e8 (patch) | |
| tree | 7f6b1fb3a74166d97f2ba74f50d3cd787ec163dd /frontend/src/components/Settings.tsx | |
| parent | 5e2b1b2de36fc63cfa677705388f5701c62ee138 (diff) | |
| download | neko-6e28d1530aa08b878f5082bbcd85a95f84f830e8.tar.gz neko-6e28d1530aa08b878f5082bbcd85a95f84f830e8.tar.bz2 neko-6e28d1530aa08b878f5082bbcd85a95f84f830e8.zip | |
chore: update build artifacts and finalize test improvements
Diffstat (limited to 'frontend/src/components/Settings.tsx')
| -rw-r--r-- | frontend/src/components/Settings.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/src/components/Settings.tsx b/frontend/src/components/Settings.tsx index ec432ba..3dab77f 100644 --- a/frontend/src/components/Settings.tsx +++ b/frontend/src/components/Settings.tsx @@ -138,8 +138,9 @@ export default function Settings({ fontTheme, setFontTheme }: SettingsProps) { <div className="appearance-section"> <h3>Appearance</h3> <div className="font-selector"> - <label>Font Theme:</label> + <label htmlFor="font-theme-select">Font Theme:</label> <select + id="font-theme-select" value={fontTheme || 'default'} onChange={(e) => setFontTheme(e.target.value)} className="font-select" |
