Matthew Wolfe

Results 11 comments of Matthew Wolfe

I've run into a similar issue with the following projects structure: ``` - NextJS App (uses next-i18next) - Create React App (uses react-i18next) - Shared Components Package (uses react-i18next) ```...

@adrai > Then probably we have to live with that warning... The problem is, during build, the Layout component is rendered also if i18next is not initialized yet and not...

I unfortunately don't see this getting merged @rikkit 😞

You might be able to try: ```tsx renderLeftActions={() => null} ``` I have a list where I want to swipe right -> left to display a delete button, but I...

@joetidee https://github.com/JedWatson/react-input-autosize/pull/133

In 13.x it looks like when changing the `distDir` nextjs will output to that directory during dev mode, but in 14.x nextjs outputs to `.next` regardless of what is set...

@karelFourie can you confirm that `14.0.5-canary.10` is broken and `14.0.5-canary.9` works as intended.

@ijjk I cloned @karelFourie 's reproduction repository and installed `14.1.1-canary.52` and the issue persists. Similarly the following steps also reliably reproduce the issue: 1. Run `npx create-next-app@latest` 2. Add following...

I did a little bit of discovery on the viability of this, and it looks like `react-docgen` can reliably generate values depending on how the props are typed in the...