Blur clone error from moralis youtube channel

Axios Error could be an error from the backend.

Do you see any errors in backend console?

it stuck here for very long time it shows nothing

Oh ok…Can you check your browser console and the network tab for more details of this error?
Try looking for an error message

console from frontend


console from backend

It seems like Blur clone project is not using next-auth so we can remove the SessionProvider component wrapper and the related imports from your _app.js file.

Now your export from _app.js should look like this.

export default function App({ Component, pageProps }) {
  return (
    <>
      <WagmiConfig config={config}>
        <Component {...pageProps} />
      </WagmiConfig>
    </>
  );
}


it showind errors

Dont remove the const config code which you previously copied from this doc.

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.