diff --git a/src/Components/CreateImageWizardV2/ValidatedTextInput.tsx b/src/Components/CreateImageWizardV2/ValidatedTextInput.tsx index f8be08f0..b907820c 100644 --- a/src/Components/CreateImageWizardV2/ValidatedTextInput.tsx +++ b/src/Components/CreateImageWizardV2/ValidatedTextInput.tsx @@ -9,6 +9,7 @@ import { interface ValidatedTextInputPropTypes extends TextInputProps { dataTestId?: string | undefined; + ouiaId?: string; ariaLabel: string | undefined; helperText: string | undefined; validator: (value: string | undefined) => Boolean; @@ -18,6 +19,7 @@ interface ValidatedTextInputPropTypes extends TextInputProps { export const ValidatedTextInput = ({ dataTestId, + ouiaId, ariaLabel, helperText, validator, @@ -44,6 +46,7 @@ export const ValidatedTextInput = ({