Thomas Howlett

Results 13 comments of Thomas Howlett

Ran into this issue as well, I had to uninstall a npm package that has cldr-data as a peer dependency first and then install cldr-data manually

I ran into this error when trying to use Vite with this library and react-native-web ``` Could not read from file: react-native-web\Libraries\Utilities\codegenNativeComponent ``` Turned out to be a issue with...

Ran into the same issue, looks like it's a issue with React v18 StrictMode, removing StrictMode or running a prod build it works fine. https://reactjs.org/blog/2022/03/29/react-v18.html#new-strict-mode-behaviors

Looks like react-spring doesn't support React v18 yet https://github.com/pmndrs/react-spring/issues/1563

I believe the issue with your `foo` function is you need to add the generic type to `TFuncKey`, for example `TFuncKey`

Haven't tried it yet, but this seems similar https://github.com/roman-rr/cupertino-pane

> > Haven't tried it yet, but this seems similar https://github.com/roman-rr/cupertino-pane > > Very nice animations, but I unfortunately couldn't figure out how to use it with JSX https://github.com/tech-systems/panes/issues/142#issuecomment-816086262

I ran into this error as well and fixed it by using `serverDependenciesToBundle` in `remix.config.js`: ``` serverDependenciesToBundle: [/.*@ionic.*/, /.*ionicons.*/, /.*@stencil.*/], ``` Note however after getting past that error I ran...

Looks like the error is caused by having `moneyTransferServices` on both `userDataSchema` and `userSchema`. I was able to fix the error by changing the following line in `userDataSchema` ``` Type.Partial(userSchema),...

Another way to fix this: set `lazy=false` always and toggle the transparency of the input text instead, something like: ``` color: isFocused || (value !== null && value !== undefined)...