Dimitri van der Vliet

Results 10 comments of Dimitri van der Vliet

React native link command is removed in [0.69](https://reactnative.dev/blog/2022/06/21/version-069#breaking-changes). It should work without this command :-)

@felipesoares6 looks like this is the fork: https://github.com/star-micronics/react-native-star-io10/compare/master...kickbk:react-native-star-io10:master

I made a fork that contains some of these fixes, you can try them out by using: ``` "react-native-star-io10": "https://github.com/jongbelegen/react-native-star-io10", ``` In your package.json

I think this idea makes sense. Note that avoidOptionals can be used as a bool or AvoidOptionalsConfig. For example, my config looks like this: ``` avoidOptionals: field: true inputValue: false...

I tried using dotenv in a jestSetupFile but i got some strange behavior: When I access a property dynamically like so ```process.env[`EXPO_PUBLIC_${env}`]``` it seems to work in my test, but...

I have the same issue after installing Sentry. `"@sentry/react-native": "5.19.1"` When i run `process._getActiveHandles()` The result is 1 readstream and 2 write streams (fd: 0, fd: 1, fd: 2). After...

I replaced my yarn implementation with npm using a workspace. And I'm getting the following error when not in de root folder: ``` npm verb version Not tagging: not in...

I guess by trail and error we figured it out. It seems that stripe SDK always prefers to do caching itself (because otherwise ill get an error that the token...

I'm having a similar issue I think. I like to use my client directly without a hook if I do not need the result state to be in the react...

I got it working by returning an assoc array: ``` return [ 'type' => "FeatureCollection", 'features' => [] ]; ```