Wizard: Fix disable Next on Registration step
When the option to register with rhc and insights was added back the disableNext condition wasn't updated, allowing user to continue with registration even without selecting activation key.
This commit is contained in:
parent
4f7a344bf9
commit
f60e80b4e8
1 changed files with 1 additions and 1 deletions
|
|
@ -328,7 +328,7 @@ const CreateImageWizard = ({ isEdit }: CreateImageWizardProps) => {
|
|||
footer={
|
||||
<CustomWizardFooter
|
||||
disableNext={
|
||||
registrationType === 'register-now' && !activationKey
|
||||
registrationType.startsWith('register-now') && !activationKey
|
||||
}
|
||||
/>
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue