diff --git a/src/commands/vault.rs b/src/commands/vault.rs
index 801745ce760ec632485bf6a56b72e7d91e7abd24..58821ddc074b0880e16179962212c4b19d599777 100644
--- a/src/commands/vault.rs
+++ b/src/commands/vault.rs
@@ -369,9 +369,9 @@ pub async fn handle_command(data: Data, command: Subcommand) -> Result<(), GcliE
 				);
 
 				let confirmation_message = if account_to_delete.is_base_account() {
-					"Are you sure you want to delete it along with the saved key ?"
+					"Are you sure you want to delete it along with the saved key?"
 				} else {
-					"Are you sure you want to delete it ?"
+					"Are you sure you want to delete it?"
 				};
 
 				let confirmed = inputs::confirm_action(confirmation_message.to_string())?;