cloudConfig: configure the footer

Setup the footer for the AWS config step.
This commit is contained in:
Gianluca Zuccarelli 2025-04-16 09:15:33 +00:00 committed by Sanne Raymaekers
parent 9d2c798376
commit 87647f8854

View file

@ -12,13 +12,19 @@ export const CloudProviderConfig = () => {
const navigate = useNavigate();
const handleClose = () => navigate(resolveRelPath(''));
// TODO: add custom wizard footer
return (
<>
<ImageBuilderHeader inWizard={true} />
<PageSection>
<Wizard onClose={handleClose}>
<WizardStep name="AWS Config" id="aws-config">
<WizardStep
name="AWS Config"
id="aws-config"
footer={{
nextButtonText: 'Submit',
isBackDisabled: true,
}}
>
<AWSConfig />
</WizardStep>
</Wizard>