Bene

Results 30 comments of Bene

Having the same problem. I can't authenticate using an app password or API token. ```js const bitbucketClient = new bitbucket.Bitbucket({ auth: { type: "apppassword", username: "my name", password: "my app...

Yes, I'm using this patch for now: ``` diff --git a/node_modules/@react-navigation/core/src/getPathFromState.tsx b/node_modules/@react-navigation/core/src/getPathFromState.tsx index f3e30de..a6d9f49 100644 --- a/node_modules/@react-navigation/core/src/getPathFromState.tsx +++ b/node_modules/@react-navigation/core/src/getPathFromState.tsx @@ -118,7 +118,7 @@ export default function getPathFromState( const currentParams =...

setting maxWidth/maxHeight seems to do something. But I don't like setting it to some random values without understanding it. Is there no other solution instead of downgrading to a version...

I also had this issue earlier, but after restarting the bundler and rebuilding the app it went away.

In my case I'm doing the restart when selecting a value from a dropdown which also results in this crash. I just removed the reanimated animation from the dropdown which...

Is there any reason this is not implemented yet? I currently just use my own hook which is pretty straightforward: ```ts function useMMKVObject(key: string) { const [json, setJson] = useMMKVString(key);...

Oh I noticed it doesn't work if openRight is initially true. So openRight={true} doesn't work, but openRight={this.state.openRight} works if this.state.openRight is initially false and gets later set to true.

I got some similar errors when changing the styleURL. This one seems to be caused by the compass: ``` Error while updating property 'reactStyle' of a view managed by: RCTMGLSymbolLayer...

I think it makes sense the way it is, why do you want the function to be called with the same argument? Can you explain your use-case?

Sorry, I somehow lost track of this and forgot about it. You're right, these are valid use cases, I'll look into this today.