tfrere commited on
Commit
3a58409
·
1 Parent(s): 56dae4d

remove strict mode in dev

Browse files
Files changed (1) hide show
  1. client/src/main.jsx +1 -6
client/src/main.jsx CHANGED
@@ -1,10 +1,5 @@
1
- import { StrictMode } from "react";
2
  import { createRoot } from "react-dom/client";
3
  import "./index.css";
4
  import App from "./App.jsx";
5
 
6
- createRoot(document.getElementById("root")).render(
7
- <StrictMode>
8
- <App />
9
- </StrictMode>
10
- );
 
 
1
  import { createRoot } from "react-dom/client";
2
  import "./index.css";
3
  import App from "./App.jsx";
4
 
5
+ createRoot(document.getElementById("root")).render(<App />);