Browse Source

fix(examples/modals): renamed InputText to TextInput

nitroflap 3 years ago
parent
commit
1b48b9b22e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      examples/modals/main.go

+ 2 - 2
examples/modals/main.go

@@ -51,7 +51,7 @@ var (
 					Components: []discordgo.MessageComponent{
 						discordgo.ActionsRow{
 							Components: []discordgo.MessageComponent{
-								discordgo.InputText{
+								discordgo.TextInput{
 									CustomID:    "opinion",
 									Label:       "What is your opinion on them?",
 									Style:       discordgo.TextStyleShort,
@@ -63,7 +63,7 @@ var (
 						},
 						discordgo.ActionsRow{
 							Components: []discordgo.MessageComponent{
-								discordgo.InputText{
+								discordgo.TextInput{
 									CustomID:  "suggestions",
 									Label:     "What would you suggest to improve them?",
 									Style:     discordgo.TextStyleParagraph,