fix: remove broken code splitting

This commit is contained in:
2026-05-30 17:15:39 +00:00
parent 9ba2d91d05
commit 7e0ec4b1c4
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
import React from "react";
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import { App } from "./App";
import "./styles.css";
@@ -10,7 +10,7 @@ if (!root) {
}
createRoot(root).render(
<React.StrictMode>
<StrictMode>
<App />
</React.StrictMode>,
</StrictMode>,
);