Nam Nguyen
Nam Nguyen
Right now the tag name must be `dedent` to enable transform on that template. It's better if we can support for a custom tag name from option, such as `gql`...
If payload.data or payload.notification is present, we merge the whole payload to the fcm message object. This will solve the case user need to send data-only or custom notification payload...
# Bug report - [x] I've checked the [example](https://github.com/react-native-webrtc/react-native-callkeep/tree/master/example) to reproduce the issue. - Reproduced on: - [x] Android - [ ] iOS ## Description Only the first `displayIncomingCall` trigger...
Can we have an option to cleanup on unmount, something similar to this: ```js promiseCaches.push(promiseCache); useEffect(() => () => { promiseCaches = promiseCaches.filter(p => p !== promiseCache); }, []); throw...
Can we export a function to programmatically remove a cache item? The exported function should take two parameters `promiseFn` and `inputs` then we can filter the cache array to remove...
Right now we are having a global cache array. I think we should have a way to config the cache size to make sure it wont be too big and...
We need to improve the if statement in the cache check to: `if (promiseCache.promiseFn === promise && deepEqual(inputs, promiseCache.inputs))` Example of an invalid case: ```js const fn1 = () =>...
- Closes #363
It should remove the whole things, but instead it throws MemoryFileSystemError(errors.code.EPERM, _path) This can be a small fix to remove everything instead of throw an error.
Hi, here is the code copied from README. I have an issue that it says `counter` does not exist on `getters`, `actions` or `mutations`. Only `state` works though. The code...