Hi,
I have this code to go back one step in the current journey:
if (msg && msg.match(/^back$/i) && msg.length < 5) {
const steps = {
name: app.context.steps.name,
email: app.context.steps.email,
skipInit: true,
};
return app.triggerIntent(app.context.intent, {}, steps);
}
skipInit has been set to true, but its still getting executed.How to avoid that pls?
Thanks.