aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/Settings.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/Settings.tsx')
-rw-r--r--frontend/src/components/Settings.tsx3
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"