Florent SCHILDKNECHT
Florent SCHILDKNECHT
> However this changes the return type of the function from `string | false` to `string | undefined` Strictly speaking, `string | false` is abusive in that case, the `foo`...
I completely agree with your vision, I just wanted to reflect on the fact that, in your previous example, `undefined` was already a potential value even without the optional chaining...
Hej @xiaoyuhen, I have some issues with a local express instance using https.createServer ; (The server itself starts but jest always show the timeout message `Server has taken more than...
> It will give you an error. More a warning I would say, this library has not been certified compatible with React v18 yet. I have been using it with...
Oh okay, I have not used npm in years now, did not know it would prevent to install it 🤷 yarn just warns about the version potentially not supported. the...
I am also facing that error when trying to use Reanimated >= 3.6.0 with React Native Debugger open: > [Reanimated] `ProgressTransitionRegister` is not available on non-native platform. | Library |...
As suggested by @memanoj, a patch-package does the trick temporarily. If anyone is interested, I used the following meanwhile: ```js diff --git a/node_modules/react-native-reanimated/lib/module/reanimated2/UpdateProps.js b/node_modules/react-native-reanimated/lib/module/reanimated2/UpdateProps.js index 723afbd..a9ebeb3 100644 --- a/node_modules/react-native-reanimated/lib/module/reanimated2/UpdateProps.js +++...
This might (my knowledges of accessibility roles being limited to my own experience) be a side-effect of the default attributes introduced by the BottomSheet component in 4.6.0: https://github.com/gorhom/react-native-bottom-sheet/pull/1288/files#diff-5a2db14facf13a3da647cb85a27700e0cddade0c6a5e136428e7e63fea4ac242R39 I believe...
NOTE: it seems that I am unable to select text components on Android within the modal for some reasons. Digging into that. Seems to be a different issue though: https://github.com/gorhom/react-native-bottom-sheet/issues/687
I ended up here as well quite confused, while using a Cloud Run container as [HTTP target](https://cloud.google.com/tasks/docs/creating-http-target-tasks). I found the following unclear: 1. that the payload passed to `createTask()` **needs**...