cli: fix error formatting

Missed using `format!` to actually emit the error when the sync fails.
This commit is contained in:
Fintan Halpenny 2025-08-15 10:31:17 +01:00
parent ed5b2659c8
commit 01bed73a60
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ where
Ok(Some(result))
}
Err(err) => {
spinner.error("Sync failed: {err}");
spinner.error(format!("Sync failed: {err}"));
Err(err.into())
}
}