Notification card for unfinished manga matching processes allowing resume or cancel.
Shows pending manga count and provides action buttons to resume or clear queue.
Source
exportconstResumeNotification: React.FC<ResumeNotificationProps> = ({ pendingMangaCount, onResumeMatching, onCancelResume, }) => { // Don't render anything if there are no pending manga if (pendingMangaCount <= 0) { returnnull; }
Notification card for unfinished manga matching processes allowing resume or cancel. Shows pending manga count and provides action buttons to resume or clear queue.
Source