Skip to content

Commit bac2c07

Browse files
committed
fix(web): remove duplicate StrictMode elem
1 parent d7d33e3 commit bac2c07

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

web/src/main.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { StrictMode } from "react";
21
import { createRoot } from "react-dom/client";
32
import App from "./components/App.tsx";
43

@@ -9,8 +8,4 @@ if (!containerElem) {
98
}
109

1110
const root = createRoot(containerElem);
12-
root.render(
13-
<StrictMode>
14-
<App />
15-
</StrictMode>,
16-
);
11+
root.render(<App />);

0 commit comments

Comments
 (0)