Kim CHOUARD
Kim CHOUARD
@msftedad are you sure you posted this issue in the proper repo?
Interestingly, it works in Expo Snacks, see [this one](https://snack.expo.dev/@kimik/dfd0d5) I just created. But definitely fails locally or when pushed online (via Netfly or so).
**TEMP FIX:** encode your URLs by replacing `(` by `%28` and `)` by `%29`. ```js const expoLinkProofingExternalUrls = (url) => url?.replace(/\(/g, '%28').replace(/\)/g, '%29'); ``` This will keep the `href` value...
> @kimchouard I think adding a description with the details of your issue would be helpful :) Indeed, thanks for raising it 😅 I've created this PR using `github.dev` (which...
@marklawlor FYI I've integrated your latest changes from master to make this PR ready to be merged 🤓
It's only affecting Web. I'll work on a unit test this week, sorry first contribution to this repo 🙏
Seems to be failing with storybook as well: [539](https://github.com/storybookjs/react-native/issues/539)
> maybe related to how this remapping happens? > > https://github.com/marklawlor/nativewind/blob/4232087bd2405e8d9b42979fcda429b5ddaa2a49/packages/react-native-css-interop/src/runtime/components.ts#L47 AH! Yes. When commenting line 51 from this file on my local project, it fixes the issue. ```js remapProps(FlatList,...
Alright, found a cleaner fix by proofing a bit more `cssInterop`, in `api.ts#L37`: https://github.com/marklawlor/nativewind/blob/4232087bd2405e8d9b42979fcda429b5ddaa2a49/packages/react-native-css-interop/src/runtime/api.ts#L37 As I suspected, the param is still passed on even if no styles are set (`newStyles`...