Mathias Berg
Mathias Berg
I did test it in codesandbox also, but could not reproduce it there either. The change happened between version `3.34.16` and version. `3.34.17` so something has been changed between those...
I just tried to set `refetchInterval` to a low number in useQuery in that codesandbox that you linked to and I could reproduce it there as well.
Fixed! Added the codesandbox to the description.
As far as I can see, you are not updating your `dataProvider`. You should be doing something like this to update it. `useEffect(() => { setDataProvider(currentDataProvider => currentDataProvider.cloneWithRows(datas)); }, [datas]);`
Can confirm the above solution works. Just upgraded from Expo 45 to Expo 46 (React 18) and the menu stopped showing in my app, forked this repo and did the...
@lukewalczak I will see if I can pull something together in the upcoming days.
This seems to be fixed in RC, I'm sorry for not helping out, a lot of things got in the way.
Not stale, still a problem.
I use this in my build and it works fine to build for both Intel and Arm: `"target": [ { "target": "mas", "arch": "universal" } ]`
Hi @lukewalczak , any update on this?