aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 8438b67..d671dba 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -1,13 +1,9 @@
import { createRoot } from "react-dom/client";
import { StrictMode, lazy, Suspense } from "react";
-import { kcContext } from "./KcApp/kcContext";
+import { kcContext } from "./keycloakTheme/kcContext";
const App = lazy(() => import("./App"));
-const KcApp = lazy(() => import("./KcApp"));
-
-if (kcContext !== undefined) {
- console.log(kcContext);
-}
+const KcApp = lazy(() => import("./keycloakTheme/KcApp"));
createRoot(document.getElementById("root")!).render(
<StrictMode>