Fix download tooltip in interactive search

This commit is contained in:
Bogdan 2023-08-28 03:35:47 +03:00 committed by Mark McDowall
parent 2e9dbfd382
commit f521942301
1 changed files with 2 additions and 2 deletions

View File

@ -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 {