You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 5, 2026. It is now read-only.
I'm developing a Teams chatbot using the Bot Framework SDK and following the guidance from Microsoft's documentation to enable a feedback loop with custom feedback form. Here's how I configured it:
channelData: {
feedbackLoop: {
type: "custom"
},
However, when I click the feedback button, the default feedback dialog appears, followed by custom feedback dialog a few seconds later. I see that the OnInvokeActivityAsync method is triggered after the default feedback dialog is shown.
Recording.2025-05-26.131950.1.mp4
Is this behavior expected? If not, how can I prevent the default feedback dialog from appearing and ensure that only my custom feedback dialog is displayed?