Reader overlay mobile header

This commit is contained in:
schroda
2024-09-28 03:24:59 +02:00
parent 7434ed0152
commit c1eb631422
4 changed files with 142 additions and 2 deletions

View File

@@ -301,7 +301,7 @@ export const MangaDetails = ({
const copyTitle = async () => {
try {
await navigator.clipboard.writeText(manga.title);
makeToast(t('global.label.copied'), 'info');
makeToast(t('global.label.copied_clipboard'), 'info');
} catch (e) {
defaultPromiseErrorHandler('MangaDetails::copyTitleLongPress')(e);
}