Fixed: Grammar in tooltip of download button

This commit is contained in:
hugepants 2021-12-18 03:46:22 +00:00 committed by GitHub
parent 39192a6622
commit d5b91f81ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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