diff --git a/packages/react-core/src/components/Wizard/WizardContext.tsx b/packages/react-core/src/components/Wizard/WizardContext.tsx index c3eb29ee196..8fed97e25f7 100644 --- a/packages/react-core/src/components/Wizard/WizardContext.tsx +++ b/packages/react-core/src/components/Wizard/WizardContext.tsx @@ -28,11 +28,11 @@ export interface WizardContextProps { getStep: (stepId: number | string) => WizardStepType; /** Set step by ID */ setStep: (step: Pick & Partial) => void; - /** @beta Flag indicating whether the wizard content should be focused after the onNext or onBack callbacks + /** Flag indicating whether the wizard content should be focused after the onNext or onBack callbacks * are called. */ shouldFocusContentOnNextOrBack: boolean; - /** @beta Ref for main wizard content element. */ + /** Ref for main wizard content element. */ mainWrapperRef: React.RefObject; }