Function clearTitleNormalizationCache

  • Clears the title normalization cache.

    Returns void

    export function clearTitleNormalizationCache(): void {
    try {
    storage.removeItem(STORAGE_KEYS.TITLE_NORMALIZATION_CACHE);
    console.info("[Storage] 🧹 Cleared title normalization cache");
    } catch (error) {
    console.error(
    "[Storage] ❌ Error clearing title normalization cache",
    error,
    );
    }
    }