Sophie Tr
Sophie Tr
Adding this CSS rule 'fixed' the issue for me: ``` .snotifyToast__body { max-width: 100%; } ``` Upon closer inspection, the CSS layout is a bit weird: it is implemented by...
Having the same issue. In my case, it's not ngDestroy, but ngAfterViewInit. This lifecycle hook code: ``` private sizeChangedSubject = new Subject(); public ngAfterViewInit(): void { setTimeout(() => { this.sizeChangedSubject.next();...
I'm in need of this feature, too. My use case is that some errors get handled in a custom way, inside the component. However, any errors that are not custom...
I'm curious to find out why the decision was made to explicitly call the Angular ErrorHandler from action handlers. Am I wrong to assume that any errors that are unhandled,...
Awaiting this feature request, here's a way to bypass the undesired behaviour of errors being processed by the `ErrorHandler` even when they are caught, or errors that are **processed twice**...
For me, it works as expected. I followed the instructions on [the expo documentation site](https://docs.expo.dev/build-reference/variants/) to setup a dedicated Target, accompanied by a Scheme, for each environment. I'm able to...
This blocks us from upgrading to react-redux@9 and @reduxjs/toolkit@2, since it causes a peer dependency conflict. Please release a version that supports redux@5.
Possible duplicate of https://github.com/dohooo/react-native-reanimated-carousel/issues/550
I can confirm there's a problem with the generated google-services.json file. In our case, we use a separate api key for each of our environments (dev, tst, prd). The keys...
In my case, it was due to the following line in `styles.xml`. Removing this line resolved the issue: `@layout/launch_screen` This line is mentioned in some old documentation and blogposts, but...