fix: removed an stray space character in text of main menu league
All checks were successful
CI / build (push) Successful in 1m6s

This commit is contained in:
2026-06-25 09:58:54 +03:30
parent a96419f324
commit 0926323d18

View File

@@ -60,7 +60,7 @@ func (h *Handler) buildStatusText(user *domain.User) string {
text += fmt.Sprintf("\nLevel: %d | XP: %d", stats.Level, stats.XP) text += fmt.Sprintf("\nLevel: %d | XP: %d", stats.Level, stats.XP)
rankText := h.buildLeagueRankText(user.ID) rankText := h.buildLeagueRankText(user.ID)
if rankText != "" { if rankText != "" {
text += "\n " + rankText text += "\n" + rankText
} }
} }
} }