Function clearIgnoredDuplicates

  • Clear all ignored duplicate entries from storage

    Returns void

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