Interactive learning (generated story) does not work

Hi, I am trying to define an unhappy path when the user stops in the middle of a form. I used “rasa interactive” and defined all actions. At the end I exit and export everything, which means rasa automatically add everything in stories.yml, domain.yml and nlu.yml. But when I try to run the exact same unhappy path again (which was now automatically generated and added by rasa in stories.yml > story: interactive_story_1), it still doesn’t work. Does anyone know the solutions to it?

stories.yml

stories:
- story: user is happy and starts form
  steps:
  - intent: greet
  - action: initial_phq_form
  - active_loop: initial_phq_form
- story: user stops form
  steps:
  - intent: greet
  - action: initial_phq_form
  - active_loop: initial_phq_form
  - slot_was_set:
    - requested_slot: disinterest
  - intent: stop
  - action: utter_ask_continue_stop
  - or:
    - intent: stop
    - intent: affirm
  - action: utter_stop_form
  - action: action_deactivate_loop
  - active_loop: null
  - slot_was_set:
    - requested_slot: null

- story: interactive_story_1
  steps:
  - intent: greet
  - action: initial_phq_form
  - active_loop: initial_phq_form
  - slot_was_set:
    - requested_slot: disinterest
  - intent: few_days
  - slot_was_set:
    - disinterest: 1.0
  - action: initial_phq_form
  - slot_was_set:
    - requested_slot: hopelessness
  - intent: stop
  - action: utter_ask_continue_stop
  - intent: affirm
  - action: utter_stop_form
  - action: action_deactivate_loop
  - active_loop: null
  - slot_was_set:
    - requested_slot: null