Hynek

Results 5 comments of Hynek

I would also vouch for removing at least `next/image` dependency. While I am a big fan of Vercel, I wasn't able to make `next/image` work with SSG (via `next export`)....

I had the same problem (pretty frustrating), and as I figured out, the issue was that I mistakenly nested a React component inside itself, which probably resulted in infinite recursion....

Agreed, manual input should respect `dateFormat` prop. There is [another discussion (3636)](https://github.com/Hacker0x01/react-datepicker/discussions/3636) where I proposed a temporary workaround, but it should be fixed in the library as it really seems...

@codetheweb Nice solution, thank you. For me, even slightly simpler version works (Gatsby site): ```jsx const MyComponent = () => { const isSSR = typeof window === "undefined"; const portalNode...

I don't have a solution (this would be a PR fixing the bug), let's say a [temporary workaround](https://github.com/Hacker0x01/react-datepicker/discussions/3636#discussioncomment-5665328)