feat: remove use of non existent oauth provider
This commit is contained in:
@ -2,7 +2,6 @@ import { createRoot } from "react-dom/client";
|
||||
import App from "./App";
|
||||
|
||||
import "./index.css";
|
||||
import { OAuthProvider } from "./context/oauth/provider";
|
||||
|
||||
if (typeof window.guard !== "object") {
|
||||
window.guard = {
|
||||
@ -13,8 +12,4 @@ if (typeof window.guard !== "object") {
|
||||
|
||||
const root = document.getElementById("root")!;
|
||||
|
||||
createRoot(root).render(
|
||||
<OAuthProvider>
|
||||
<App />
|
||||
</OAuthProvider>,
|
||||
);
|
||||
createRoot(root).render(<App />);
|
||||
|
Reference in New Issue
Block a user