From 12ed2d51ce5337b95011474d4391ebdccc4936e9 Mon Sep 17 00:00:00 2001 From: Lior Shahverdi Date: Wed, 18 Mar 2026 15:44:37 -0400 Subject: [PATCH] Adds a trash icon button alongside the existing retry button for failed generations, giving users a way to clean up failed entries without having to retry them first. --- app/src/components/History/HistoryTable.tsx | 30 ++++++++++++++------- tauri/src-tauri/Cargo.lock | 2 +- 2 files changed, 22 insertions(+), 10 deletions(-) diff --git a/app/src/components/History/HistoryTable.tsx b/app/src/components/History/HistoryTable.tsx index e88c7701..914c7fcb 100644 --- a/app/src/components/History/HistoryTable.tsx +++ b/app/src/components/History/HistoryTable.tsx @@ -569,15 +569,27 @@ export function HistoryTable() { )} {isFailed ? ( - + <> + + + ) : ( <> diff --git a/tauri/src-tauri/Cargo.lock b/tauri/src-tauri/Cargo.lock index b133dfc8..194314de 100644 --- a/tauri/src-tauri/Cargo.lock +++ b/tauri/src-tauri/Cargo.lock @@ -5041,7 +5041,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "voicebox" -version = "0.2.3" +version = "0.3.1" dependencies = [ "base64 0.22.1", "core-foundation-sys",