Rasa CLI not filling slot via interactive, but same code in Rasa X does

I tend to prefer to stay on the CLI for building my simple POC bots. I was noticing that the slot value for my painfully simple form was not being filled properly when using rasa interactive, but for laughs when I hopped into Rasa X, it worked as expected. Is there an issue with Rasa CLI and/or rasa interactive?

My bot is the same as we get via rasa init except for the following info below. Is there something that I am missing as to why it would work in Rasa X but not via rasa interactive?

domain.yml

forms:
  form_covid_start:
    to_campus:
    - intent: affirm
      type: from_intent
  utter_ask_to_campus:
  - text: Are you coming to campus today?

nlu.yml

- intent: covid_checkin
  examples: |
    - I need to do my daily check in
    - daily status
    - checkin
    - covid status test
    - daily status check

rules.yml

- rule: Covid form 1
  steps:
  - intent: covid_checkin
  - action: form_covid_start
  - active_loop: form_covid_start

stories.yml

- story: interactive_story_1
  steps:
  - intent: covid_checkin
  - action: form_covid_start
  - active_loop: form_covid_start
  - slot_was_set:
    - requested_slot: email
  - intent: affirm
  - slot_was_set:
    - to_campus: yes
  - slot_was_set:
    - requested_slot: null

You mean the conversation didn’t go as expected or the dumped story was wrong?

When going through the conversation, after the affirm intent was predicted, the slot was not filled per the output printed to the screen as well as the exported story. That same conversation filled the slot when viewing in Rasa X, only difference, Rasa X vs rasa interactive.