fix: remove redundant ref in format! argument

This commit is contained in:
asepharyana
2026-07-13 08:16:40 +07:00
parent ab07d094b4
commit 0155a04cee
+1 -1
View File
@@ -631,7 +631,7 @@ pub fn apply_action(state: &mut AppStateRest, action: Action) {
state.push_toast(Toast::new(
ToastKind::Info,
format!("Starting workflow: {}", &script.chars().take(40).collect::<String>()),
format!("Starting workflow: {}", script.chars().take(40).collect::<String>()),
));
let session_dir = state.session_dir.clone();