Skip to content

Commit

Permalink
Update condition for mutual exclusivity.
Browse files Browse the repository at this point in the history
  • Loading branch information
techanvil authored Oct 23, 2024
1 parent eb3233b commit 463df37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion assets/js/modules/analytics-4/datastore/audiences.js
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,9 @@ const baseActions = {
if ( result.error ) {
if ( isInsufficientPermissionsError( result.error ) ) {
insufficientPermissionsError = result.error;
} else {
failedAudiencesToRetry.push( audienceSlug );
}
failedAudiencesToRetry.push( audienceSlug );
} else {
configuredAudiences.push( result.response.name );
}
Expand Down

0 comments on commit 463df37

Please sign in to comment.