Skip to content

Commit

Permalink
feat: Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-carlier-ls committed Oct 31, 2023
1 parent 8ac097a commit 86adb35
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions examples/interaction-view/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func moodCmdHandler(ctx *slacker.CommandContext) {
moodSurveyView,
)
if err != nil {
log.Printf("ERROR openEscalationModal: %v", err)
fmt.Printf("ERROR openEscalationModal: %v\n", err)
}
}

Expand All @@ -111,8 +111,6 @@ func moodViewHandler(ctx *slacker.InteractionContext) {
)
}
case slack.InteractionTypeViewClosed:
{
fmt.Print("Mood view closed.\n")
}
fmt.Print("Mood view closed.\n")
}
}

0 comments on commit 86adb35

Please sign in to comment.