In Rasa 3.6.2, The slot values are not filling properly

Hi @nik202

I am using rasa 3.6.2, i am using slots as mobile_number, to_acc, otp and amount. but the slots are not filling properly.

If i type something , the input is filling to all the slots values.

Slots in domain.yml file

slots:
  mobile_number:
    type: text
    mappings:
      - type: from_entity
        entity: mobile_number
      - type: from_text
    influence_conversation: false   
    
  otp:
    type: text
    mappings:
      - type: from_entity
        entity: otp
      - type: from_text
    influence_conversation: false

  to_acc:
    type: text
    mappings:
      - type: from_entity
        entity: to_acc
      - type: from_text
    influence_conversation:  false

  amount:
    type: text
    mappings:
      - type: from_entity
        entity: amount
      - type: from_text
    influence_conversation: false  
![slots|690x113](upload://p8zVTUszi9MRi9Uknrvbll9JRQt.png)
![slots1|690x170](upload://phdbQ4qyDJj0Cdh9cIzWawlS7cM.png)

@Horizon733 , Please can you suggest on this issue

Drop the type: from_text. Also can you provide your example utterances and do they have examples of the entities?