Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions bot/command/impl/statistics/statsuser.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,12 +211,10 @@ func (StatsUserCommand) Execute(ctx registry.CommandContext, userId uint64) {

msgEmbed := embed.NewEmbed().
SetTitle("Statistics").
SetColor(ctx.GetColour(customisation.Green)).
SetAuthor(member.User.Username, "", member.User.AvatarUrl(256)).
AddField("Permission Level", permissionLevel, true).
AddField("Feedback Rating", fmt.Sprintf("%.1f / 5 ⭐", feedbackRating), true).
AddField("Feedback Count", fmt.Sprintf("%d", feedbackCount), true).
AddBlankField(true).
AddField("Feedback Count", fmt.Sprintf("%d", feedbackCount), true).
AddField("Average First Response Time (Weekly)", formatNullableTime(weeklyAR), true).
AddField("Average First Response Time (Monthly)", formatNullableTime(monthlyAR), true).
AddField("Average First Response Time (Total)", formatNullableTime(totalAR), true).
Expand Down