Skip to content

Commit d5887dd

Browse files
committed
Removed beta flag on context props
1 parent f65a645 commit d5887dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react-core/src/components/Wizard/WizardContext.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ export interface WizardContextProps {
2828
getStep: (stepId: number | string) => WizardStepType;
2929
/** Set step by ID */
3030
setStep: (step: Pick<WizardStepType, 'id'> & Partial<WizardStepType>) => void;
31-
/** @beta Flag indicating whether the wizard content should be focused after the onNext or onBack callbacks
31+
/** Flag indicating whether the wizard content should be focused after the onNext or onBack callbacks
3232
* are called.
3333
*/
3434
shouldFocusContentOnNextOrBack: boolean;
35-
/** @beta Ref for main wizard content element. */
35+
/** Ref for main wizard content element. */
3636
mainWrapperRef: React.RefObject<HTMLElement>;
3737
}
3838

0 commit comments

Comments
 (0)