Skip to content

Commit

Permalink
fix: Track safe cretion events under the same category (#1312)
Browse files Browse the repository at this point in the history
  • Loading branch information
usame-algan authored Dec 9, 2022
1 parent 5a1fd79 commit 51239d7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/tx/TxStepper/vertical.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit 51239d7

Please sign in to comment.