Skip to content

Commit

Permalink
Fix string that was missed in PR #2476
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Delaney committed Jul 8, 2020
1 parent dd4d5e6 commit a5e997e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/teams-scenarios/taskModule/src/taskModuleBot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class TaskModuleBot extends TeamsActivityHandler {
}

protected async handleTeamsTaskModuleSubmit(context: TurnContext, taskModuleRequest: TaskModuleRequest): Promise<TaskModuleResponse> {
var reply = MessageFactory.text("handleTeamsTaskModuleFetchAsync Value: " + JSON.stringify(taskModuleRequest));
var reply = MessageFactory.text("handleTeamsTaskModuleSubmit Value: " + JSON.stringify(taskModuleRequest));
await context.sendActivity(reply);

return {
Expand Down

0 comments on commit a5e997e

Please sign in to comment.