diff --git a/crates/radicle-cli/src/commands/unfollow.rs b/crates/radicle-cli/src/commands/unfollow.rs index 0932ed87..367b02b3 100644 --- a/crates/radicle-cli/src/commands/unfollow.rs +++ b/crates/radicle-cli/src/commands/unfollow.rs @@ -7,10 +7,10 @@ use crate::terminal as term; pub use args::Args; pub(crate) use args::ABOUT; -pub fn run(options: Args, ctx: impl term::Context) -> anyhow::Result<()> { +pub fn run(args: Args, ctx: impl term::Context) -> anyhow::Result<()> { let profile = ctx.profile()?; let mut node = radicle::Node::new(profile.socket()); - let nid = options.nid; + let nid = args.nid; let unfollowed = match node.unfollow(nid) { Ok(updated) => updated,