Skip to content

Commit

Permalink
fix(apps.rs): fix formatting for description
Browse files Browse the repository at this point in the history
Signed-off-by: Vaughn Dice <[email protected]>
  • Loading branch information
vdice committed Mar 19, 2024
1 parent 87ea675 commit e4b6cf4
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 e4b6cf4

Please sign in to comment.