Fix TS build errors: vite/client types, remove unused inputStyle

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-02 20:17:57 +00:00
parent a695bd843f
commit 88cbc6be7b
2 changed files with 2 additions and 7 deletions

View file

@ -62,12 +62,6 @@ export function Settings() {
) )
} }
const inputStyle: React.CSSProperties = {
width: '100%', border: '1px solid var(--card-border)', borderRadius: '6px',
padding: '0.45rem 0.6rem', fontSize: '0.85rem', color: 'var(--text-dark)',
background: 'var(--body-bg)',
}
return ( return (
<div style={{ padding: '1.25rem', maxWidth: '640px' }}> <div style={{ padding: '1.25rem', maxWidth: '640px' }}>
<h2 style={{ fontSize: '1.1rem', fontWeight: 700, color: 'var(--text-dark)', marginBottom: '1.25rem' }}> <h2 style={{ fontSize: '1.1rem', fontWeight: 700, color: 'var(--text-dark)', marginBottom: '1.25rem' }}>

View file

@ -9,7 +9,8 @@
"noUnusedLocals": true, "noUnusedLocals": true,
"noUnusedParameters": true, "noUnusedParameters": true,
"noFallthroughCasesInSwitch": true, "noFallthroughCasesInSwitch": true,
"skipLibCheck": true "skipLibCheck": true,
"types": ["vite/client"]
}, },
"include": ["src"] "include": ["src"]
} }