This commit is contained in:
Hristo Nedelkov 2023-10-10 14:59:19 +03:00
parent 58f309fcb3
commit 6e1561e0b2
2 changed files with 0 additions and 2 deletions

View File

@ -98,7 +98,6 @@ const ContinueButton = () => {
}
const continueHandler = () => {
if (activeStep === 1) {
handleStep1()
} else if (activeStep === 2) {

View File

@ -24,7 +24,6 @@ const FormStepper = ({ activeStep }: FormStepperProps) => {
const dispatch = useDispatch()
const changeStepOnClickHandler = (index: number) => {
if (activeStep > index) {
dispatch(setActiveStep(index))
}
}