-
Notifications
You must be signed in to change notification settings - Fork 44
Open
Description
I have the following function
handleStep(() => {
const { isViable, nextViableQuestionIndex } = isQuestionVisible();
if (!isViable && nextViableQuestionIndex) {
console.log("going to step", nextViableQuestionIndex);
goToStep(5);
}
});
when I try to programtically use goToStep function nothing really happens. when I created a button as part of the wizard step and click it it works.
I even tried creating a workaround by making a hidden button that if u click it the function works but when going about it programmatically again nothing happens.
Metadata
Metadata
Assignees
Labels
No labels