Skip to content

Commit 24da70c

Browse files
committed
Update CreateManagedControlPlaneWizardContainer.tsx
1 parent 2016aa1 commit 24da70c

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

src/components/Wizards/CreateManagedControlPlaneWizardContainer.tsx

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -244,13 +244,11 @@ export const CreateManagedControlPlaneWizardContainer: FC<
244244
<div style={{ display: 'flex', alignItems: 'center', gap: 8 }}>
245245
{selectedStep !== 'success' &&
246246
(selectedStep === 'metadata' ? (
247-
<Button design="Negative" onClick={resetFormAndClose}>
247+
<Button onClick={resetFormAndClose}>
248248
{t('buttons.close')}
249249
</Button>
250250
) : (
251-
<Button design="Negative" onClick={onBackClick}>
252-
{t('buttons.back')}
253-
</Button>
251+
<Button onClick={onBackClick}>{t('buttons.back')}</Button>
254252
))}
255253
<Button design="Emphasized" onClick={onNextClick}>
256254
{nextButtonText[selectedStep]}
@@ -319,11 +317,6 @@ export const CreateManagedControlPlaneWizardContainer: FC<
319317
text={t('common.namespace')}
320318
additionalText={`${projectName}--ws-${workspaceName}`}
321319
/>
322-
323-
{/*<ListItemStandard*/}
324-
{/* text={t('common.region')}*/}
325-
{/* additionalText={'🇪🇺'}*/}
326-
{/*/>*/}
327320
</List>
328321
<br />
329322
<List headerText={t('common.members')}>

0 commit comments

Comments
 (0)