We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74fbec0 commit 4b9e50aCopy full SHA for 4b9e50a
pkg/commands/billing/status.go
@@ -2,6 +2,7 @@ package billing
2
3
import (
4
"fmt"
5
+ "strings"
6
"time"
7
8
"github.com/Layr-Labs/eigenx-cli/pkg/commands/utils"
@@ -79,11 +80,10 @@ var StatusCommand = &cli.Command{
79
80
81
// Plan details
82
if subscription.PlanPrice != nil && subscription.Currency != nil && *subscription.PlanPrice > 0 {
- logger.Info("Plan: $%.2f/%s", *subscription.PlanPrice, *subscription.Currency)
83
+ logger.Info("Plan: $%.2f %s", *subscription.PlanPrice, strings.ToUpper(*subscription.Currency))
84
} else {
85
logger.Info("Plan: Standard")
86
}
- logger.Info(" - 1 app deployed on %s", envName)
87
logger.Info("")
88
89
// Current environment usage
0 commit comments