Kier Borromeo
Kier Borromeo
For #151 ## Supported - [x] `merge({ text })` - [x] `merge('fetch', { loading: false })` - [x] `merge(state.comments, '34.replies.5', { text })` ## Todo - [ ] Value keypaths...
Maybe we could have an immutable push (and unshift?) method. ## Before ```js return put(state, 'data', [ ...state.data, action.payload ]) ``` ## After ```js return push(state, 'data', action.payload) ``` -----...
Deep `put`
Currently `put` [immutably] only sets the value to the object path. I was wondering if it would be possible to merge the new object to the current. #### Sample Data...
**Describe the bug** `experimentalSuggestChain` doesn't throw when user closes Keplr's passport prompt. **To Reproduce** Steps to reproduce the behavior: 1. Remove any chain suggested on your Keplr wallet 2. Logout...
This is for the pool gauges in the pool page (`/pool/[id]`):  For Stride, we'd like to display the sum of external and internal incentives. This is how it looks...
It seems we're including cosmos' default registry types. I'm wondering if we could do the same for amino types as well?
If my memory serves me right, returning a Promise makes sure the data is updated before the mutation is entirely complete (i.e., `isPending` is true until onSuccess is fulfilled) This...