fix: remove count from batch removal (#2309)

Integrated into release/v3.8.0
This commit is contained in:
Markus Hartung
2026-05-16 22:39:50 +02:00
committed by GitHub
parent 8eb721ec31
commit dae0501d75

View File

@@ -224,9 +224,7 @@ export default function BatchListTab({
<span className="material-symbols-outlined text-[16px]">
{removingCompleted ? "hourglass_empty" : "delete_sweep"}
</span>
{removingCompleted
? "Removing…"
: `Remove completed${completedBatches.length > 0 ? ` (${completedBatches.length})` : ""}`}
{removingCompleted ? "Removing…" : "Remove completed"}
</button>
</div>