Improve delete UX and TTS audio quality

Clear text on delete and enhance TTS output with Korean voice selection and ffmpeg audio normalization.
This commit is contained in:
dsyoon
2026-01-30 15:26:09 +09:00
parent 373299e0cb
commit 6b40d23c7e
2 changed files with 49 additions and 1 deletions

View File

@@ -131,6 +131,9 @@ async function handleDelete() {
const data = await res.json();
const deletedSet = new Set(data.deleted || []);
items = items.filter((item) => !deletedSet.has(item.id));
textInput.value = "";
downloadLink.href = "#";
downloadLink.classList.add("hidden");
setEditMode(false);
}