From d5887dd1280d34206dc886347ed7958853690eb1 Mon Sep 17 00:00:00 2001 From: Eric Olkowski Date: Wed, 17 Apr 2024 13:40:10 -0400 Subject: [PATCH] Removed beta flag on context props --- packages/react-core/src/components/Wizard/WizardContext.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }