### HeroUI Version @heroui/system@2.4.20 ### Describe the bug After updating Next.js to 15.5, because the new feature [Typed Routes](https://nextjs.org/blog/next-15-5#typed-routes-stable), the type of `HeroUIProvider.navigate` doesn't match anymore. Temporary fix: ```diff 'use client'; import { HeroUIProvider } from '@heroui/system'; import { useRouter } from 'next/navigation'; ... export function Providers({ children }) { const router = useRouter(); return ( - <HeroUIProvider navigate={router.push}> + <HeroUIProvider + navigate={(path, options) => router.push(path as never, options)} + > {children} </HeroUIProvider> ); } ``` ### Your Example Website or App _No response_ ### Steps to Reproduce the Bug or Issue As above. ### Expected behavior No change to use. ### Screenshots or Videos _No response_ ### Operating System Version Windows 11 24H2 (26100.4946) ### Browser Edge