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 App from "./App";
|
||||||
|
|
||||||
import "./index.css";
|
import "./index.css";
|
||||||
import { OAuthProvider } from "./context/oauth/provider";
|
|
||||||
|
|
||||||
if (typeof window.guard !== "object") {
|
if (typeof window.guard !== "object") {
|
||||||
window.guard = {
|
window.guard = {
|
||||||
@ -13,8 +12,4 @@ if (typeof window.guard !== "object") {
|
|||||||
|
|
||||||
const root = document.getElementById("root")!;
|
const root = document.getElementById("root")!;
|
||||||
|
|
||||||
createRoot(root).render(
|
createRoot(root).render(<App />);
|
||||||
<OAuthProvider>
|
|
||||||
<App />
|
|
||||||
</OAuthProvider>,
|
|
||||||
);
|
|
||||||
|
Reference in New Issue
Block a user