export function clearPendingMangaStorage(): void {
console.debug(
"[MangaImport] Clearing pending manga storage after import to force recalculation",
);
if (globalThis.electronStore) {
globalThis.electronStore.removeItem("pending_manga");
}
// Also clear from localStorage as fallback
localStorage.removeItem("pending_manga");
}
Clears pending manga storage from electron-store and localStorage to force recalculation on next sync.