Jakub Hromek
Jakub Hromek
> **onCloese event trigger 2 times** Following the code, I am getting closed alert two times once before showing the message & another one after closing the message. > >...
I hame same issue on Samsung Galaxy S8 (SM-G950F), newest ROM from 2022-08-19 and Magisk 25.2. Everithing works fine until i start script by Termax bash. ```$ sudo ./test``` Content...
I resolve it by waiting for activated state of ServiceWorker. ```typescript const getFBToken = ( m: Messaging, serviceWorkerRegistration: ServiceWorkerRegistration ): Promise | undefined => { let sw: ServiceWorker | undefined;...
You can temporary fix it by animation, for example with **react-spring**: ```typescript ... const [springs] = useSpring(() => (isOpen ? { opacity: 1, scale: 1 } : { opacity: 0,...