From f521942301ac9743199928a4b9939b2023febf20 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Mon, 28 Aug 2023 03:35:47 +0300 Subject: [PATCH] Fix download tooltip in interactive search --- frontend/src/InteractiveSearch/InteractiveSearchRow.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/InteractiveSearch/InteractiveSearchRow.tsx b/frontend/src/InteractiveSearch/InteractiveSearchRow.tsx index 0a8fb442c..4d3e700e5 100644 --- a/frontend/src/InteractiveSearch/InteractiveSearchRow.tsx +++ b/frontend/src/InteractiveSearch/InteractiveSearchRow.tsx @@ -63,12 +63,12 @@ function getDownloadTooltip( if (isGrabbing) { return ''; } else if (isGrabbed) { - return translate('AddToDownloadQueue'); + return translate('AddedToDownloadQueue'); } else if (grabError) { return grabError; } - return translate('AddedToDownloadQueue'); + return translate('AddToDownloadQueue'); } interface InteractiveSearchRowProps {