Michele Bonazza
Michele Bonazza
don't know if this will help anyone, but the problem is that there's a missing `.bind(this)` call [on this line](https://github.com/steveathon/bootstrap-wysiwyg/blob/2.0-dev/src/bootstrap-wysiwyg.js#L74), so that the `touchend` handler can refer to `this` inside...
https://github.com/facebook/homebrew-fb/pull/47 was pushed, this issue seems to be solved now 🚀
you can actually add support for Relay-specific directives using external definitions, using e.g. [this project](https://github.com/relay-tools/relay-graphql-js/tree/main/packages/graphql-config#usage). I actually included a local definition file with what I need instead, by adding it...
Sure, I edited the example app so that it updates `fillValue` on button press. If you run it from [this branch](https://github.com/micheleb/segmented-arc-for-react-native/tree/test/dynamic-fill-value) you'll see that the segment label is updated, but...
having the exact same issue
actually I think this is the same as #1602
Here's a use-at-your-own-risk patch that fixed the logo briefly disappearing in my case: expo-updates+0.27.3.patch ```diff diff --git a/node_modules/expo-updates/ios/EXUpdates/ReactDelegateHandler/ExpoUpdatesReactDelegateHandler.swift b/node_modules/expo-updates/ios/EXUpdates/ReactDelegateHandler/ExpoUpdatesReactDelegateHandler.swift index 39829aa..fe9d3a0 100644 --- a/node_modules/expo-updates/ios/EXUpdates/ReactDelegateHandler/ExpoUpdatesReactDelegateHandler.swift +++ b/node_modules/expo-updates/ios/EXUpdates/ReactDelegateHandler/ExpoUpdatesReactDelegateHandler.swift @@ -40,13 +40,16 @@...
Thanks for responding so quickly! > I don't think this code will ever get called, as the negative option being added later is what is being processed right now, and...