From f300875dfe57fd563edd17e667085ca3010804ff Mon Sep 17 00:00:00 2001 From: Shakker Nerd Date: Tue, 27 Jan 2026 01:57:13 +0000 Subject: [PATCH] Fix: Corrected the `sendActivity` parameter type from an array to a single activity object --- extensions/msteams/src/reply-dispatcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/msteams/src/reply-dispatcher.ts b/extensions/msteams/src/reply-dispatcher.ts index 7b50b0629..f54422d33 100644 --- a/extensions/msteams/src/reply-dispatcher.ts +++ b/extensions/msteams/src/reply-dispatcher.ts @@ -42,7 +42,7 @@ export function createMSTeamsReplyDispatcher(params: { }) { const core = getMSTeamsRuntime(); const sendTypingIndicator = async () => { - await params.context.sendActivity([{ type: "typing" }]); + await params.context.sendActivity({ type: "typing" }); }; const typingCallbacks = createTypingCallbacks({ start: sendTypingIndicator,