Skip to content

Commit e0d2044

Browse files
committed
remove test route
1 parent befbc6a commit e0d2044

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/main.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { StrictMode } from "react";
22
import { createRoot, type Root } from "react-dom/client";
33
import "./index.css";
44
import App from "./App.tsx";
5-
import Placeholder from "./components/Placeholder.tsx";
65

76
const root: HTMLElement =
87
document.getElementById("root") ||
@@ -14,10 +13,6 @@ const appRoot: Root = createRoot(root);
1413

1514
appRoot.render(
1615
<StrictMode>
17-
{window.location.hash === "#/test" ? (
18-
<App />
19-
) : (
20-
<Placeholder href="https://instructurecon.com" />
21-
)}
16+
<App />
2217
</StrictMode>,
2318
);

0 commit comments

Comments
 (0)