fix(ui): make ctx menu download tooltip not refer to iamges

This commit is contained in:
psychedelicious
2025-08-28 16:11:17 +10:00
committed by Mary Hipp Rogers
parent a6b0581939
commit e4f24c4dc4

View File

@@ -22,8 +22,8 @@ export const ContextMenuItemDownload = memo(() => {
return (
<IconMenuItem
icon={<PiDownloadSimpleBold />}
aria-label={t('parameters.downloadImage')}
tooltip={t('parameters.downloadImage')}
aria-label={t('gallery.download')}
tooltip={t('gallery.download')}
onClick={onClick}
/>
);