I am testing out React Aria in Next.js and I keep getting this error.
Warning: Prop id
did not match. Server: "react-aria-3" Client: "react-aria-10"
Wrapping _app.js with the SSRProvider component does not resolve this issue
export default function App({ Component, pageProps }: AppProps) {
return (
<SSRProvider>
<Component {...pageProps} />
</SSRProvider>
);
}
I am using Next.js 13. Not sure how to fix this issue.