cli: cargo fmt

Missed a `cargo fmt` for the feedback print statements
This commit is contained in:
Fintan Halpenny 2025-04-10 16:08:47 +02:00
parent dd5f739630
commit 3dba4fbc91
1 changed files with 6 additions and 2 deletions

View File

@ -91,8 +91,12 @@ pub fn run(_options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
term::blank();
term::print("Do you have feedback?");
term::print(" - Chat <\x1b]8;;https://radicle.zulipchat.com\x1b\\radicle.zulipchat.com\x1b]8;;\x1b\\>");
term::print(" - Mail <\x1b]8;;mailto:feedback@radicle.xyz\x1b\\feedback@radicle.xyz\x1b]8;;\x1b\\>");
term::print(
" - Chat <\x1b]8;;https://radicle.zulipchat.com\x1b\\radicle.zulipchat.com\x1b]8;;\x1b\\>",
);
term::print(
" - Mail <\x1b]8;;mailto:feedback@radicle.xyz\x1b\\feedback@radicle.xyz\x1b]8;;\x1b\\>",
);
term::print(" (Messages are automatically posted to the public #feedback channel on Zulip.)");
Ok(())