diff options
author | 2024-06-11 21:10:47 +0200 | |
---|---|---|
committer | 2024-06-11 21:10:47 +0200 | |
commit | 8ae7624e64752bd201ee869b0bf27c97b531c91b (patch) | |
tree | ff6850d73e0a8ca76e38e4c912da64fd86851090 /src | |
parent | Update kc.get (diff) |
Fix inconsistency
Diffstat (limited to 'src')
-rw-r--r-- | src/account/KcPage.tsx | 2 | ||||
-rw-r--r-- | src/login/KcPage.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/account/KcPage.tsx b/src/account/KcPage.tsx index 2d4fe98..f743327 100644 --- a/src/account/KcPage.tsx +++ b/src/account/KcPage.tsx @@ -5,7 +5,7 @@ import { useI18n } from "./i18n"; import DefaultPage from "keycloakify/account/DefaultPage"; import Template from "keycloakify/account/Template"; -export default function KcApp(props: { kcContext: KcContext }) { +export default function KcPage(props: { kcContext: KcContext }) { const { kcContext } = props; const { i18n } = useI18n({ kcContext }); diff --git a/src/login/KcPage.tsx b/src/login/KcPage.tsx index 6f09fca..c06f34b 100644 --- a/src/login/KcPage.tsx +++ b/src/login/KcPage.tsx @@ -11,7 +11,7 @@ const UserProfileFormFields = lazy( const doMakeUserConfirmPassword = true; -export default function KcApp(props: { kcContext: KcContext }) { +export default function KcPage(props: { kcContext: KcContext }) { const { kcContext } = props; useDownloadTerms({ |