vbornand
vbornand
@nandorojo I have still the issue on Android, but works on ios.
With expo-router 3.4.1 using: @react-navigation/native: 6.1.9 @react-navigation/native-stack: 6.9.17 The issue is resolved
> Therefore, I think that it is worth waiting for the update along with the Expo SDK update to version 50 It is resolved with Expo 50 still in preview...
I analyzed how the `as='scoped'` feature and it is managed here: https://github.com/aurelia/loader/blob/c0cbdbbf42f284559443c7533043c5de859858c8/src/template-registry-entry.js#L78 The "scoped" is used as the name of the dependency, a kind of hack... and handle by the...
> Also, in the context of apps, I am not sure that a "refresh" action will even really always make sense. Its like - you have a memory crash so...
It seems currently not possible to customize the context menu and disable it completely in not a solution because Copy, Paste, ... options are required. https://github.com/MicrosoftEdge/WebViewFeedback/issues/80
Hi @lemarier , There is still the issue with the version 1.0.0-beta.1 The refresh fails with the message "custom-protocol-taurilocalhost’s server IP address could not be found."
The fix is pretty easy to do: Before: ```ts export function useFeedSuspenseQueryMySuffix(baseOptions?: Apollo.SuspenseQueryHookOptions) { const options = {...defaultOptions, ...baseOptions} return Apollo.useSuspenseQuery(FeedDocument, options); }`); ``` After: ```ts export function useFeedSuspenseQueryMySuffix(baseOptions?: Apollo.SkipToken...