Apply same strategy for UserProfileFormField than for TempateProps for extendability

This commit is contained in:
Joseph Garrone
2024-06-11 21:21:58 +02:00
parent 5b64cfc23c
commit e1633f43f4
6 changed files with 6 additions and 6 deletions

View File

@ -42,7 +42,7 @@ const LoginX509Info = lazy(() => import("keycloakify/login/pages/LoginX509Info")
const WebauthnError = lazy(() => import("keycloakify/login/pages/WebauthnError"));
type DefaultPageProps = PageProps<KcContext, I18n> & {
UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps<KcContext, I18n>) => JSX.Element>;
UserProfileFormFields: LazyOrNot<(props: UserProfileFormFieldsProps) => JSX.Element>;
doMakeUserConfirmPassword: boolean;
};