ui: drop the 'download complete' success toast

Successful downloads no longer pop a 'downloadOk' toast across all
the download sites (PopularRankList, RecommendedCard, FileDocBubble,
ImageLightbox). The browser's native download UI already confirms
the action, and the toast was redundant noise. Failure toasts and
the spinner state remain so users still see errors.
This commit is contained in:
TerryM
2026-05-30 01:21:35 +08:00
parent 92e6ce9dd8
commit 4e5093cae0
4 changed files with 0 additions and 4 deletions

View File

@@ -94,7 +94,6 @@ function LightboxDownloadButton({
setIsDownloading(true);
try {
await downloadAttachment(postId, attachment.id, attachment.filename);
showToast(t("downloadOk"));
} catch {
showToast(t("downloadFail"), "error");
} finally {