Skip to content

Commit

Permalink
Remove dependence on integrations variable (#826)
Browse files Browse the repository at this point in the history
Signed-off-by: Simeon Widdis <[email protected]>
(cherry picked from commit 4d4e28a)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Aug 4, 2023
1 parent c412ffc commit 407e49c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export function AddedIntegrationsTable(props: AddedIntegrationsTableProps) {
setIsModalVisible(true);
};

const integTemplateNames = [...new Set(integrations.map((i) => i.templateName))].sort();
const integTemplateNames = [...new Set(props.data.hits.map((i) => i.templateName))].sort();

const search = {
box: {
Expand Down

0 comments on commit 407e49c

Please sign in to comment.