diff options
| author | 2023-02-26 12:32:22 +0100 | |
|---|---|---|
| committer | 2023-02-26 12:32:22 +0100 | |
| commit | 3d0736e72b8af581819c3255af6fb36b0198a40a (patch) | |
| tree | 4731116a3932f08580cb5d6722be678880014854 /src/index.tsx | |
| parent | Fix build (diff) | |
Commit for saving
Diffstat (limited to 'src/index.tsx')
| -rw-r--r-- | src/index.tsx | 8 |
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> |