feat: add 'Verhandlungssicher' language level option

Language levels now: Muttersprache, Verhandlungssicher, Fließend, Gut

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Thomas Reitz 2026-03-09 12:25:18 +01:00
parent c40d768827
commit ea5dfda913

View file

@ -8,7 +8,7 @@ interface LanguagesSectionProps {
onUpdate: () => Promise<void>;
}
const LANGUAGE_LEVELS = ['Muttersprache', 'Fließend', 'Gut'];
const LANGUAGE_LEVELS = ['Muttersprache', 'Verhandlungssicher', 'Fließend', 'Gut'];
export function LanguagesSection({ languages, onUpdate }: LanguagesSectionProps) {
const [language, setLanguage] = useState('');