diff --git a/core/src/manager/manager.rs b/core/src/manager/manager.rs index e78d81de..08e0610e 100644 --- a/core/src/manager/manager.rs +++ b/core/src/manager/manager.rs @@ -99,7 +99,7 @@ impl Manager { tokio::spawn(async move { let result = - emit!(Input(InputOpt::top("There are {tasks} tasks running, sure to quit? (y/N)"))); + emit!(Input(InputOpt::top(format!("There are {tasks} tasks running, sure to quit? (y/N)")))); if let Ok(choice) = result.await { if choice.to_lowercase() == "y" {