diff options
| author | 2023-03-10 13:45:28 +0100 | |
|---|---|---|
| committer | 2023-03-10 13:45:28 +0100 | |
| commit | 3197c9f0256599bb9e35dc940b69d90dd3c1e0a0 (patch) | |
| tree | 5521e9295d0a065ef90c6015c32e747d1f88e4a3 /src | |
| parent | Merge branch 'main' of https://github.com/codegouvfr/keycloakify-starter (diff) | |
Update KcApp.tsx
Signed-off-by: Joseph Garrone <[email protected]>
Diffstat (limited to 'src')
| -rw-r--r-- | src/keycloak-theme/KcApp.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/keycloak-theme/KcApp.tsx b/src/keycloak-theme/KcApp.tsx index e7f8a0c..1235b6b 100644 --- a/src/keycloak-theme/KcApp.tsx +++ b/src/keycloak-theme/KcApp.tsx @@ -5,9 +5,10 @@ import { useI18n } from "./i18n"; import Fallback, { defaultKcProps, type KcProps, type PageProps } from "keycloakify"; import Template from "./Template"; import DefaultTemplate from "keycloakify/lib/Template"; -import { foo, bar } from "./valuesTransferredOverUrl"; -console.log(`Values passed by the main app in the URL parameter:`, { foo, bar }); +// You can uncomment this to see the values passed by the main app before redirecting. +//import { foo, bar } from "./valuesTransferredOverUrl"; +//console.log(`Values passed by the main app in the URL parameter:`, { foo, bar }); const Login = lazy(()=> import("./pages/Login")); // If you can, favor register-user-profile.ftl over register.ftl, see: https://docs.keycloakify.dev/realtime-input-validation |