I am working on bot have implemented BotBuilderPlugin following https://microsoft.github.io/teams-sdk/typescript/migrations/botbuilder/integration
After implementing this my Message Extension functionality like Action commands is not working anymore
https://microsoft.github.io/teams-sdk/typescript/in-depth-guides/message-extensions/action-commands
When click on Action from overflow menu on the message I receive this error
When I comment plugins Message Extension functionality works as expected
const app = new App({
...credentialOptions,
storage,
oauth: {
defaultConnectionName: config.oauthConnectionName
},
//plugins: [new BotBuilderPlugin({ adapter, handler })],
logger: new ConsoleLogger('echo', { level: 'debug' })
});