Closed e-roy closed 2 years ago
It's a problem with web3-ui
. It'll be fixed once we merge and publish this: https://github.com/Developer-DAO/web3-ui/pull/217
Since the @web3-ui/core package is still being battle tested, shouldn't the user's version be locked down to a known working version? Then version is updated as it's tested?
@e-roy can you check now with the latest version?
I tried npx create-dao today and found an error with using the @web3-ui/core package 0.4.0.
When using npx create-dao, v 0.4.0 is installed automatically When using this repo in development, 0.2.0 is in the package.json
Is this an issue with @web3-ui/core package 0.4.0?
work around is to lock down the version the user installs to v 0.2.0 here
'framer-motion@^4', 'react-icons', '@web3-ui/core', ];
to :'framer-motion@^4', 'react-icons', '@web3-ui/core@0.2.0', ];
@Dhaiwat10 thoughts?