ijavad805 / react-datepicker

a cool datepicker
https://ijavad805.github.io/react-datepicker/
32 stars 5 forks source link

Bug: changing language from fa to en realtime not working #2

Closed farhadggu closed 1 year ago

farhadggu commented 1 year ago

I setup a toggle button for changing lang of datepicker when I changing from "fa" to "en" without refreshing datepicker not working I should refresh the project to work

ijavad805 commented 1 year ago

thanks to you for reporting this issue, I will fix it on a pull request, but if you are in a hurry, you can use this code to make it work

const [ lang, setLang ] = useState("en");

return (
   <>
       {lang === "en"  ? <Datepicker lang={"en"}/> : <Datepicker lang={"fa"} />}
   </>
)