Skip to content

Commit

Permalink
fix: resolve reading properties of null flatMap JS error related to g…
Browse files Browse the repository at this point in the history
…roups (#1082)
  • Loading branch information
adamstankiewicz authored May 20, 2024
1 parent 28f164b commit f711578
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export async function fetchEnterpriseAccessPolicies(enterpriseUuid) {
return results;
} catch (error) {
logError(error);
return null;
return [];
}
}

Expand Down

0 comments on commit f711578

Please sign in to comment.