Before this, the action_deactivate_form works well. However, after around two months of not using Rasa, I finally came back to test and add something out. But, I noticed that action_deactivate_form is not working. I have tried scrolling around to see maybe there is update or deprecated or something but I didnt find any. My question is how to solve this?
This is the only 3 stories with the form that I did before and it works just fine:
## enquiries happy path
* greet
- utter_greet
- utter_assist
- utter_btn_Main
* enquiries
- utter_tell_form
- form_info
- form{"name": "form_info"}
- form{"name": null}
- utter_did_that_help
* affirm
- utter_react_positive
- utter_anything_else
* affirm
- utter_btn_Main
## enquiries unhappy path
* enquiries
- utter_tell_form
- form_info
- form{"name": "form_info"}
* MainMenu
- utter_ask_continue
* deny
- action_deactivate_form
- form{"name": null}
- utter_btn_Main
## enquiries unhappy path
* enquiries
- utter_tell_form
- form_info
- form{"name": "form_info"}
* MainMenu
- utter_ask_continue
* affirm
- form_info
- form{"name": null}
- utter_did_that_help
What makes I know that the form is not deactivate is that I try it in debug mode and it shows that the form_info is active. Can somebody help me