• Clears all backup history from storage.

    Returns void

    export function clearBackupHistory(): void {
    try {
    storage.removeItem(STORAGE_KEYS.BACKUP_HISTORY);
    console.log("[Backup] Backup history cleared");
    } catch (error) {
    console.error("[Backup] Failed to clear backup history:", error);
    }
    }