We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afa16fa commit e078f56Copy full SHA for e078f56
packages/react-core/src/components/Wizard/WizardToggle.tsx
@@ -73,8 +73,7 @@ export const WizardToggle = ({
73
74
return (
75
<React.Fragment key={step.id}>
76
- {activeStep?.id === step.id &&
77
- (body || body === undefined ? <WizardBody {...body}>{children}</WizardBody> : children)}
+ {activeStep?.id === step.id && <WizardBody {...body}>{children}</WizardBody>}
78
79
<div key={step.id} style={{ display: 'none' }}>
80
<WizardStep {...propsWithoutChildren} />
0 commit comments