mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-21 20:44:18 +00:00
🧹 Remove unused variable
This commit is contained in:
parent
bf714b6982
commit
14ea7f0c1d
1 changed files with 1 additions and 1 deletions
|
@ -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}>
|
||||
|
|
Loading…
Reference in a new issue