Remove checkmarks from volume mount display
Resolved mounts have already been filtered to existing sources, so
the existence check is always true. Drop the redundant checkmarks.
change xpmmmxvkytxokryotznlumqsmnuqlvur
commit af6b7160362091f33d6838b65bb0a069646c0f7e
author Alpha Chen <alpha@kejadlen.dev>
date
parent trxtnwyw
diff --git a/src/main.rs b/src/main.rs
index fe9dd99..c2a807e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -201,12 +201,7 @@ impl Ramekin {
                         .unwrap_or_else(|| format!("  {scope}"));
                     println!("{label}");
                 }
-                println!(
-                    "    {} {} → {}",
-                    check(&m.source),
-                    m.source.display(),
-                    m.display_target()
-                );
+                println!("    {} → {}", m.source.display(), m.display_target());
             }
         }