Chore: Description for Notifications on ChapterRefresh

This commit is contained in:
Youwes09
2026-04-16 00:19:36 -05:00
parent 2b140ae022
commit 236d6bcf08
+1 -1
View File
@@ -496,7 +496,7 @@
chapterStore.delete(store.activeManga.id); chapterStore.delete(store.activeManga.id);
gql(FETCH_CHAPTERS, { mangaId: store.activeManga.id }) gql(FETCH_CHAPTERS, { mangaId: store.activeManga.id })
.then(() => reloadChapters(store.activeManga!.id)) .then(() => reloadChapters(store.activeManga!.id))
.then(() => addToast({ kind: "success", title: "Chapters refreshed" })) .then(() => addToast({ kind: "success", title: "Chapters refreshed", body: `${chapters.length} chapter${chapters.length !== 1 ? "s" : ""} available` }))
.catch(e => addToast({ kind: "error", title: "Refresh failed", body: e?.message })) .catch(e => addToast({ kind: "error", title: "Refresh failed", body: e?.message }))
.finally(() => refreshing = false); .finally(() => refreshing = false);
} }