Skip to content

Commit

Permalink
[Cloud Security][BugFix] Fix for missing account_type on env created …
Browse files Browse the repository at this point in the history
…via Github action (elastic#167690)

## Summary

This PR is for Fix for issue where account_type is missing if that
integration was made via Github Action
(elastic/security-team#7686)
  • Loading branch information
animehart authored Oct 3, 2023
1 parent 5a21962 commit b53bdd6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ const AwsAccountTypeSelect = ({
);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [input]);
}, [input, updatePolicy]);

return (
<>
Expand Down Expand Up @@ -341,7 +341,7 @@ const GcpAccountTypeSelect = ({
);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [input]);
}, [input, updatePolicy]);

return (
<>
Expand Down

0 comments on commit b53bdd6

Please sign in to comment.