Search code examples
javascriptreactjsdependenciescurrency-formatting

I am facing the problem to install react-currency-format?


I I'm facing the issue for install react- currency- format because of latest version of react 18 i can easily install with the help of force save....but i have doubts if i m doing this then it will creat issues with my system


Solution

  • currently the react-currency-format does not work with the 18.0.0 and above to get the react-currency format to work you will need to downgrade your react to react ^17.0.0 in your package.json file after deleting your package-lock.json

    another option is to add --force to the end of the install command like so

    npm install react-currency-format --save --force
    

    or you can also use

    npm i react-currency-format --save --force
    

    Your Welcome