Clear all ignored duplicate entries from storage
export function clearIgnoredDuplicates(): void { try { storage.removeItem(STORAGE_KEYS.IGNORED_DUPLICATES); } catch (error) { console.error("Error clearing ignored duplicates from storage", error); }} Copy
export function clearIgnoredDuplicates(): void { try { storage.removeItem(STORAGE_KEYS.IGNORED_DUPLICATES); } catch (error) { console.error("Error clearing ignored duplicates from storage", error); }}
Clear all ignored duplicate entries from storage