Thank you for the reply. I tried what you said, but it is still persisting in another way.
flows.yml:
confirmation:
description: to confirm with user for booking appointment
steps:
- collect: final_confirmation
ask_before_filling: true
next:
- if: not slots.final_confirmation
then:
- action: utter_appointment_cancelled
next: END
- else:
- collect: user_place
- collect: user_pincode
rejections:
- if: not (slots.user_pincode matches "^\d{6}$")
utter: utter_invalid
next: appointment_successful
- action: utter_appointment_booked
id: appointment_successful
I have even made other flow’s collect’s slot to ask_before_filling: true and reset_after_flow_ends: true just in case the bot considers the previous slots and respond where i don’t it need to do.
Now i face in a way as shown in below image:

Could you give me a corrected way for this?