We’re following the tutorials and docs, but when running the application we’re getting these errors
Here are the errors
Here’s the index.js
import React from "react";
import ReactDOM from "react-dom";
import "./index.css";
import App from "./App";
import reportWebVitals from "./reportWebVitals";
import { MoralisProvider } from "react-moralis";
const APP_ID = "removed for post"
const SERVER_URL = "removed for post"
ReactDOM.render(
<MoralisProvider appId={APP_ID} serverUrl={SERVER_URL}>
<React.StrictMode>
<App />
</React.StrictMode>
</MoralisProvider>,
document.getElementById("root")
);
reportWebVitals();