Mattia
Mattia
Confirm it's happening on 4.4.2 only on Mac environment for me
Some more info, in my case it says ``` Found a cache from build 559 at yarn-cache-arch1-darwin-amd64-6_58-... ``` But I'm now at build 592, is there a way to say...
After reading this https://support.circleci.com/hc/en-us/articles/115015426888-Clear-project-dependency-cache I set an environment variable `CACHE_VERSION` with value `v2` and it seems like it solved the issue.
Damn, that's a good point I'll try again soon to verify if it still happening. Have you tried to downgrade to 3.2.2 to see if it works?
Latest working version for me it's `4.2.2` FYI in case you wanna downgrade
Add an env variable to your project if you don't already have it `CACHE_VERSION` and use `2`, or if you already have it, increase it. I remember this fixed it...
I think I've found the issue ```js
Yes seems to be related https://github.com/facebook/react-native/issues/27721
They forgot to put the `defaultProps`, you can quickly fix it editing `LazyloadListView.js` here ``` ... class LazyloadListView extends Component{ static displayName = 'LazyloadListView'; static propTypes = { ...ListView.propTypes };...
Interesting discussion 😄 Before starting to use Stitches + Radix I've always wondered "why isn't there a button in Radix?". I eventually built a `Button` component myself, it's probably a...