Skip to content

Commit

Permalink
Merge pull request #186 from vdice/fix/app-info-description
Browse files Browse the repository at this point in the history
fix(apps.rs): fix formatting for description
  • Loading branch information
vdice committed Mar 19, 2024
2 parents 85b2d95 + e4b6cf4 commit 51a3478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/apps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ impl InfoCommand {
let (current_domain, in_progress_domain) = domains_current_and_in_progress(&app);

println!("Name: {}", &app.name);
print_if_present("Description", app.description.as_ref());
print_if_present("Description: ", app.description.as_ref());
print_if_present("URL: https://", current_domain);
if let Some(domain) = in_progress_domain {
println!("Validation for {} is in progress", domain);
Expand Down

0 comments on commit 51a3478

Please sign in to comment.