"use client"; import { NextUIProvider } from "@nextui-org/system"; import { useRouter } from "next/navigation"; export function Providers({ children }: React.PropsWithChildren) { const router = useRouter(); return ( <NextUIProvider navigate={router.push} locale="pt-BR"> {children} ...
NextUI Version 2.4.1 Describe the bug NextUIProvider navigate function is not calling the navigate function. Every time you click a link, it's reloading the whole page Your Example Website or App No response Steps to Reproduce the Bug or Issue Install last version of @nextui-org/react Set...