diff --git a/client/src/App.tsx b/client/src/App.tsx index c9127a2..4ff92d4 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -1,4 +1,3 @@ -import React from "react"; import { Switch, Route } from "wouter"; import { queryClient } from "./lib/queryClient"; import { QueryClientProvider } from "@tanstack/react-query"; diff --git a/client/src/main.tsx b/client/src/main.tsx index 58449ce..b0cf681 100644 --- a/client/src/main.tsx +++ b/client/src/main.tsx @@ -1,11 +1,11 @@ -import React from "react"; +import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; import App from "./App"; import "./index.css"; import "./i18n/config"; createRoot(document.getElementById("root")!).render( - + - + );