diff --git a/src/components/tx/TxStepper/vertical.tsx b/src/components/tx/TxStepper/vertical.tsx index 8a766c665a..f432d4d3bc 100644 --- a/src/components/tx/TxStepper/vertical.tsx +++ b/src/components/tx/TxStepper/vertical.tsx @@ -7,12 +7,19 @@ import { StepContent } from '@mui/material' import type { TxStepperProps } from '@/components/tx/TxStepper/useTxStepper' import { useTxStepper } from '@/components/tx/TxStepper/useTxStepper' -const VerticalTxStepper = ({ steps, initialData, initialStep, onClose }: TxStepperProps): ReactElement => { +const VerticalTxStepper = ({ + steps, + initialData, + initialStep, + onClose, + eventCategory, +}: TxStepperProps): ReactElement => { const { onBack, onSubmit, setStep, activeStep, stepData } = useTxStepper({ steps, initialData, initialStep, onClose, + eventCategory, }) return (