André Vendramini
André Vendramini
I've created a version to round (up or down) to the nearest time. 19:52 becomes 19:50 19:53 becomes 19:55 ```typescript const round: PluginFunc = (option, dayjsClass) => { dayjsClass.prototype.round =...
Yep, I forgot to say that I'm using TS. What is the solution in this case? TS can't find association() then I can't compile it. I've solved in this way:...
It's better to expect the error than to add &any as I did. Thanks! So it's not possible to import and use association() and trait() when using TS?
Is any reason for this PR hasn't been merged?
@Thomasbehan how did you fix?
In my case, I'm using with ionic/cordova to build an app. When I try to get user's current location and for some reason there's an error, I just call `window['fabric'].Crashlytics.sendNonFatalCrash("GPS...
I'll try it next week, then I come back here to tell if everything went well. Thank you.
I'm facing the same problem: I would like to control the opening/closing process of modals by query strings and make them accessible directly. But when I change the query string...
@JesusTheHun the problem arrives when occurs both renderings: the react-router render and the render inside my modals. ```Warning: Cannot update a component (`RouterProvider`) while rendering a different component (`WithTabs`). To...
I'm doing exactly what you said: my application is reacting based on what was set on query parameter. That's why it's been hard to figure out what is going on,...