Skip to content

Commit

Permalink
Fix eslint error?
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-tavares committed Nov 23, 2020
1 parent 8668097 commit 7af206c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const usePackagePoliciesWithAgentPolicy = (
const agentPoliciesById: Record<string, GetAgentPoliciesResponseItem> = {};

if (agentPoliciesData?.items) {
for (const agentPolicy of agentPoliciesData?.items) {
for (const agentPolicy of agentPoliciesData.items) {
agentPoliciesById[agentPolicy.id] = agentPolicy;
}
}
Expand Down

0 comments on commit 7af206c

Please sign in to comment.