Widen AudioButton lang prop to string for multi-language support
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-school (push) Successful in 43s
CI / test-go-edu-search (push) Successful in 35s
CI / test-python-klausur (push) Failing after 2m30s
CI / test-python-agent-core (push) Successful in 22s
CI / test-nodejs-website (push) Successful in 26s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-04-29 16:19:45 +02:00
parent a44d360cbc
commit a30f10a467
+1 -1
View File
@@ -4,7 +4,7 @@ import React, { useCallback, useRef, useState } from 'react'
interface AudioButtonProps {
text: string
lang: 'en' | 'de'
lang: string
isDark: boolean
size?: 'sm' | 'md' | 'lg'
}