remove extra whitespace

This commit is contained in:
Alfred Kamanda 2025-07-07 21:25:29 +03:00
parent 559b67a3e6
commit 44673ef61b
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -1512,7 +1512,7 @@ func loadUserContent(ctx context.Context, activeSym string, balance string, alia
// format the final output
balStr := fmt.Sprintf("%s %s", formattedAmount, activeSym)
if alias != "" {
content = l.Get("%s\n Balance: %s\n", alias, balStr)
content = l.Get("%s\nBalance: %s\n", alias, balStr)
} else {
content = l.Get("Balance: %s\n", balStr)
}