Pavol Caban
Pavol Caban
Had the same problem, WDYR stopped working in Expo 44. As answers above suggested, it was probably because of React 17 and CRA. All I had to do is to...
@duggster it seems you don't have `@babel/preset-react` present in your packages. Install it with yarn (or npm), like this `yarn add @babel/preset-react --dev`
@duggster yes, forgot to add `development` parameter as well. I edited my previous post.
@duggster I did the exact steps you described and created new project with same files as you have. Everything is working fine and I get this in my console: ```...
Hey guys, [Metro docs](https://docs.expo.dev/guides/customizing-metro/#expo-webpack-vs-expo-metro) says, that Fast refresh is using `@expo/metro-runtime`. I tried to look into this package and apparently it is part of the Expo Router. I don't use...
Hey guys, how does this PR looks like? You think it can be merged into Acorn core any time soon? Thanks!
> As a workaround, downgrading `@expo/webpack-config` from `0.17.2` to `0.16.2` did it for us. Not sure what changed in the config that could cause this problem. Will keep an eye...
In my case, this stuck was caused by metro config from `@ui-kitten/metro-config`. Related to https://github.com/akveo/react-native-ui-kitten/issues/1410
Hey, for anyone who don't want to go through all steps @tristanheilman mentions. This is his patch file you can put directly in `/patches` folder and just use [patch-package](https://www.npmjs.com/package/patch-package). [react-native-render-html+6.3.4.patch](https://github.com/user-attachments/files/21732437/react-native-render-html%2B6.3.4.patch)
Hey, it seems like adding both `initialProps` and `props` to VictoryContainer in VictoryVoronoiContainer helps to solve this. This is patch I use: `victory-native+37.3.6.patch` ``` diff --git a/node_modules/victory-native/lib/components/victory-voronoi-container.js b/node_modules/victory-native/lib/components/victory-voronoi-container.js index 0bce814..2a23061...