Hello FusionAuth Community,
We are using react sdk integration in our next.js client app and while importing eg : useCookies from nextClient cookies . When we are running application we are facing this issue , I am adding screenshot for your reference and this my piece of code .
'use client'
import { useCookies } from 'next-client-cookies';
export default function Providers({ children }) {
  return (
    <FusionAuthProvider {...config} nextCookieAdapter={useCookies}>
      {children}
    </FusionAuthProvider>
  );
}
Any help would be greatly appreciated!
Thanks in advance.


