Danny Delott

Results 10 comments of Danny Delott

Same issue for me, using version `1.2.2`. **.babelrc:** ``` { "presets": [ "react", ["es2015", { "modules": false }], "stage-1" ], "plugins": [ "transform-runtime", "transform-class-properties", "transform-decorators-legacy", ["sitrep", { "label": "sitrep" }]...

@karankiri this solved it for me, thank you. I was getting this error when connected to a localnet and needed to switch to mainnet and back for this error to...

From the docs: > Token Lists is a community-led initiative to improve discoverability, reputation and trust in **ERC20 token** lists in a manner that is inclusive, transparent, and decentralized. We...

It might be possible to address this with `tags` as well. In your example, a consumer would have to know the mainnet token first before they could get at the...

I've been able to attach a handler on the `style.load` event instead of `load` to know when it is safe to update the map after calling `map.setStyle()`. It's been working...

Ran into this issue today when trying to implement Blockies in my dApp so that it matches the user's desired wallet connector. (MetaMask, Fortmatic, etc..) I actually filed an issue...

Please merge this! :)

Thanks for the quick response! I'm happy to convert the other components. Do you have thoughts on how to convert `ScrollView`? Specifically, how we should expose its instance methods, ie:...

The forwardRef API won't work for ScrollView, because it currently exposes instance methods via ref, ie: `scrollTo`, `getScrollPosition`, et al. These would become inaccessible with a forwardRef refactor. Let me...