I migrate to nextjs v15rc in this version i have some issue when enable prr in next config.
the first issue is material ui tab type error i use mui tab in my project but its has type error and i tried some ways to fix problem but not works for me .
How can i fix this issue guys?
i tried some ways like render tabs when mount component like this
`const [mount,setMount] = useState(false)
useLayoutEffect(()=>setMount(true),[])
if(!mount) return null
return …`
but its not work for me