feat: remove use of non existent oauth provider

This commit is contained in:
2025-06-02 23:16:00 +02:00
parent 8e946cbee5
commit a5466f1b10

View File

@ -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>,
);