Skip to content

Commit

Permalink
fix(domains): printf perf
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneM committed Mar 5, 2024
1 parent 0cd34f1 commit 2a872cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion domains/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func List(ctx context.Context, app string) error {
if !ok {
letsencryptStatus = string(domain.LetsEncryptStatus)
}
row = append(row, fmt.Sprintf("Let's Encrypt: %s", letsencryptStatus))
row = append(row, "Let's Encrypt "+letsencryptStatus)
} else {
row = append(row, fmt.Sprintf("Valid until %v", domain.Validity))
}
Expand Down

0 comments on commit 2a872cc

Please sign in to comment.