fix(msteams): correct typing indicator sendActivity call
parent
4c11fc0c09
commit
dd6bc5382d
|
|
@ -42,7 +42,7 @@ export function createMSTeamsReplyDispatcher(params: {
|
|||
}) {
|
||||
const core = getMSTeamsRuntime();
|
||||
const sendTypingIndicator = async () => {
|
||||
await params.context.sendActivities([{ type: "typing" }]);
|
||||
await params.context.sendActivity([{ type: "typing" }]);
|
||||
};
|
||||
const typingCallbacks = createTypingCallbacks({
|
||||
start: sendTypingIndicator,
|
||||
|
|
|
|||
Loading…
Reference in New Issue