Skip to content

Commit

Permalink
Drop emojis
Browse files Browse the repository at this point in the history
We're getting complaints from the API
  • Loading branch information
uubk committed Mar 28, 2024
1 parent a221734 commit f2222e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/controller/DiscordController.go
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ func (dc *DiscordController) GetDiscordUserCard(searchString string, buttonsEnab
Style: discordgo.DangerButton,
Disabled: !buttonsEnabled,
Emoji: discordgo.ComponentEmoji{
Name: "✖️",
Name: "(x)",
},
CustomID: "findLogoutBtn",
})
Expand All @@ -275,7 +275,7 @@ func (dc *DiscordController) GetDiscordUserCard(searchString string, buttonsEnab
Style: discordgo.PrimaryButton,
Disabled: !buttonsEnabled,
Emoji: discordgo.ComponentEmoji{
Name: "🔧",
Name: "(w)",
},
CustomID: "findChangeBtn",
})
Expand All @@ -287,7 +287,7 @@ func (dc *DiscordController) GetDiscordUserCard(searchString string, buttonsEnab
Style: discordgo.SuccessButton,
Disabled: !buttonsEnabled,
Emoji: discordgo.ComponentEmoji{
Name: "✔️",
Name: "(y)",
},
CustomID: "findLoginBtn",
})
Expand All @@ -300,7 +300,7 @@ func (dc *DiscordController) GetDiscordUserCard(searchString string, buttonsEnab
Style: discordgo.SecondaryButton,
Disabled: !buttonsEnabled,
Emoji: discordgo.ComponentEmoji{
Name: "✖️",
Name: "(x)",
},
CustomID: "findCancelBtn",
})
Expand Down

0 comments on commit f2222e4

Please sign in to comment.