Axios Error could be an error from the backend.
Do you see any errors in backend console?
Axios Error could be an error from the backend.
Do you see any errors in backend console?
Oh ok…Can you check your browser console and the network tab for more details of this error?
Try looking for an error message
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>
</>
);
}
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.