diff --git a/apps/backoffice/app/components/QbittorrentDownloadButton.tsx b/apps/backoffice/app/components/QbittorrentDownloadButton.tsx index 589fb18..0786809 100644 --- a/apps/backoffice/app/components/QbittorrentDownloadButton.tsx +++ b/apps/backoffice/app/components/QbittorrentDownloadButton.tsx @@ -69,6 +69,7 @@ export function QbittorrentDownloadButton({ } else if (data.success) { setSent(true); onDownloadStarted?.(); + setTimeout(() => setSent(false), 5000); } else { setError(data.message || t("prowlarr.sentError")); } @@ -83,7 +84,7 @@ export function QbittorrentDownloadButton({