diff --git a/src/frontend/src/contexts/index.tsx b/src/frontend/src/contexts/index.tsx index 3ace4cdba..63870e94d 100644 --- a/src/frontend/src/contexts/index.tsx +++ b/src/frontend/src/contexts/index.tsx @@ -4,7 +4,6 @@ import { ReactFlowProvider } from "reactflow"; import { TooltipProvider } from "../components/ui/tooltip"; import { ApiInterceptor } from "../controllers/API/api"; import { SSEProvider } from "./SSEContext"; -import { AlertProvider } from "./alertContext"; import { AuthProvider } from "./authContext"; import { FlowsProvider } from "./flowsContext"; import { LocationProvider } from "./locationContext"; @@ -17,24 +16,22 @@ export default function ContextWrapper({ children }: { children: ReactNode }) { return ( <> - - - - - - - - - - {children} - - - - - - - - + + + + + + + + + {children} + + + + + + + );