We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9195910 commit e683b87Copy full SHA for e683b87
1 file changed
internal/commands/account/show.go
@@ -26,7 +26,8 @@ func (s *showCommand) ExecuteWithoutArguments(exec commands.Executor) (output.Ou
26
if err != nil {
27
return nil, err
28
}
29
- return output.Details{
+
30
+ details, err := output.Details{
31
Sections: []output.DetailSection{
32
{
33
Rows: []output.DetailRow{
@@ -80,6 +81,11 @@ func (s *showCommand) ExecuteWithoutArguments(exec commands.Executor) (output.Ou
80
81
},
82
83
}, nil
84
85
+ return output.MarshaledWithHumanOutput{
86
+ Value: account,
87
+ Output: details,
88
+ }, err
89
90
91
func formatCredits(credits float64) string {
0 commit comments