Daryl Roberts
Daryl Roberts
I just ran into this bug. I just figured I'd post my work around for you or anyone else coming this way. ```ts // customIcons.ts export const customIcon = {...
@102 Not in webpack. We ended up using http://i18next.com/ which gave us full control over how we get updates, and which languages are baked in and what order of fallbacks...
I've also got some requests that I would like to run in parallel. Would be cool that if you pass in an array, it runs them in parallel. ``` //...
@BruceL33t Maybe I am misunderstanding your question, but If this is using suspense, isn't the entire point not to advance past the suspended code until it loads so you guarantee...
Maybe an array of objects? If you're just doing one thing, then it's `useFetch(path, data, timeout)`, and if you want multiple requests, its `useFetch([{ path, data, timeout }, { path2,...
I'm wondering if maybe it's worth just making a generic 'suspense promise.all' component, so you could pass any number promise arrays to it, and it would just suspense until they're...
But it needs to support a range of characters in each 'block' of the mask. [cleave.js](https://github.com/nosir/cleave.js) and [react-number-format](https://github.com/s-yadav/react-number-format) don't seem to support this either.
What if prettier just tried to format block comments `/** ... */` as markdown? Or maybe you could even denote that it was a markdown comment. `/**md` SublimeText (and others...
@amannn `PropTypes.shape`? Edit: that doesn't solve the issue with end-of-line comments, but might be useful for your specific example! :)
Hello @ymichael, I took a stab at fixing the header title length with a Textfit component. It will find the header titles that are too long and shrink them down...