Sean H
Sean H
Just leaving a note here in case anyone stumbles upon this issue looking for the same solution. @alecthomas solution either no longer works or he didn't understand the problem @mremond...
It's a bit of an edge case for sure. One simple fix which may be useful outside of this one situation would be having an error handler. The handler could...
Is there any kind of stacktrace? Any differences between dev and production, like different operating systems?
Are either of you using UglifyJS in your webpack config? Adding `keep_fnames: true` to your UglifyJS config might fix the problem.
The same question was asked recently. https://github.com/headzoo/react-moment/issues/57 It seems easy enough to convert seconds to milliseconds. So I'm not sure the library really needs millisecond support.
Thanks for the feedback. Some simple rewriting can resolve those problems. I'll get on that shortly. I don't have any immediate plans to use hooks. As written, react-moment is very...
I believe this was handled in https://github.com/headzoo/react-moment/pull/102. The most recent version doesn't use componentWillMount.
That's a strange bug. Can you try deleting the file `/node_modules/react-moment/.babelrc` and then rebuild your project. If the error goes away I'll push a new build with the file removed.
I came here hoping to find a solution for this tiny bug. It's disappointing to lose the animation when going from one page to the next, because the path itself...
It looks like app-router binds the core-animated-pages to the `path` attribute without any way of changing that. ``` javascript // toggle the selected page using selected="path" instead of selected="integer" router.coreAnimatedPages.setAttribute('valueattr',...