Make of doMakeUserConfirmPassword a prop of UserProfileFormFields

This commit is contained in:
Joseph Garrone
2024-06-09 09:34:39 +02:00
parent b48dbd99cf
commit 9c123f37c8
7 changed files with 44 additions and 13 deletions

View File

@ -33,5 +33,13 @@ export default function KcApp(props: { kcContext: KcContext }) {
}
});
return <Fallback kcContext={kcContext} Template={Template} UserProfileFormFields={UserProfileFormFields} doUseDefaultCss={true} />;
return (
<Fallback
kcContext={kcContext}
Template={Template}
doUseDefaultCss={true}
UserProfileFormFields={UserProfileFormFields}
doMakeUserConfirmPassword={true}
/>
);
}