We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent befbc6a commit e0d2044Copy full SHA for e0d2044
src/main.tsx
@@ -2,7 +2,6 @@ import { StrictMode } from "react";
2
import { createRoot, type Root } from "react-dom/client";
3
import "./index.css";
4
import App from "./App.tsx";
5
-import Placeholder from "./components/Placeholder.tsx";
6
7
const root: HTMLElement =
8
document.getElementById("root") ||
@@ -14,10 +13,6 @@ const appRoot: Root = createRoot(root);
14
13
15
appRoot.render(
16
<StrictMode>
17
- {window.location.hash === "#/test" ? (
18
- <App />
19
- ) : (
20
- <Placeholder href="https://instructurecon.com" />
21
- )}
+ <App />
22
</StrictMode>,
23
);
0 commit comments