1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 04:54:18 +00:00

🧹 Remove unused variable

This commit is contained in:
Steffo 2021-05-23 18:16:59 +02:00
parent bf714b6982
commit 14ea7f0c1d
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -12,7 +12,7 @@ import ContextLanguage from "../../contexts/ContextLanguage"
* @constructor
*/
export default function SelectLanguage({ ...props }) {
const { strings, lang, setLang } = useContext(ContextLanguage)
const { lang, setLang } = useContext(ContextLanguage)
return (
<Select value={lang} onChange={event => setLang(event.target.value)} {...props}>