-
When using some of the uikit components I'm getting an error regarding a missing
How should I fix this? Refs: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi 👋 , This issue usually means that there are conflicting versions of What usually helps (from our experience) in verifying that this is the case is checking the installed versions with If there are conflicting versions you can attempt to do the following steps:
|
Beta Was this translation helpful? Give feedback.
Hi 👋 ,
This issue usually means that there are conflicting versions of
react-intl
installed in your repository. These kinds of dependency issues unfortunately occur from time to time.What usually helps (from our experience) in verifying that this is the case is checking the installed versions with
yarn why react-intl
. This should show you if versions ofreact-intl
installed in the repository are the same or there are conflicting versions.If there are conflicting versions you can attempt to do the following steps:
yarn upgrade react-intl
(with Yarn v1) oryarn up -R react-intl
(with Yarn v3).resolutions
…