From d5b91f81ef2ab20ff9e3e61c81be29b9694be8fb Mon Sep 17 00:00:00 2001 From: hugepants Date: Sat, 18 Dec 2021 03:46:22 +0000 Subject: [PATCH] Fixed: Grammar in tooltip of download button --- frontend/src/InteractiveSearch/InteractiveSearchRow.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/InteractiveSearch/InteractiveSearchRow.js b/frontend/src/InteractiveSearch/InteractiveSearchRow.js index c499cf772..43a76aafd 100644 --- a/frontend/src/InteractiveSearch/InteractiveSearchRow.js +++ b/frontend/src/InteractiveSearch/InteractiveSearchRow.js @@ -35,12 +35,12 @@ function getDownloadTooltip(isGrabbing, isGrabbed, grabError) { if (isGrabbing) { return ''; } else if (isGrabbed) { - return 'Added to downloaded queue'; + return 'Added to download queue'; } else if (grabError) { return grabError; } - return 'Add to downloaded queue'; + return 'Add to download queue'; } class InteractiveSearchRow extends Component {