Marlon

Results 4 comments of Marlon

I have the same issue on a fresh React (18.2) install with Victory v36.5.3. Downgrading didn't fix it either (tried v36.0). Also seems to brick React's hot-reloading.

The [README mentions a known issue](https://github.com/mrlaessig/react-native-autocomplete-input#known-issues) with ScrollViews: >By default the autocomplete will not behave as expected inside a . Set the scroll view's prop to fix this: keyboardShouldPersistTaps={true} for...

I stumbled across this today, too, but for the 404 pages. ```tsx // src/app/[[...slug]]/page.tsx export function generateStaticParams() { return ["home", "about", "career"].map((slug) => ({ slug: [slug] })); } export const...

Hey @bkrajewski94 Thanks for the suggestion! Interestingly enough, that (thankfully?) [didn't fix it](https://github.com/marlonschlosshauer/next-dynamic-routes-static-params-not-found/tree/adding-pages-404) for me. Running the app in dev mode also indicates that it is still using the global...