Skip to content

Commit

Permalink
Merge pull request #1932 from akto-api-security/hotfix/fix_count_map_…
Browse files Browse the repository at this point in the history
…testing_redundancy

Fixing learn more component
  • Loading branch information
notshivansh authored Jan 7, 2025
2 parents 37ba1f4 + e62d02a commit 7a40f7b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ function LearnPopoverComponent({learnMoreObj}) {
});
}
}

return (
<Popover
active={popoverActive}
Expand All @@ -42,7 +43,7 @@ function LearnPopoverComponent({learnMoreObj}) {
</Text>
</VerticalStack>
</Box> : null}
<ActionList items={[...learnMoreObj?.docsLink, ...learnMoreObj?.videoLink]} />
<ActionList items={[...learnMoreObj?.docsLink, ...learnMoreObj?.videoLink || []]} />

</Popover>
)
Expand Down

0 comments on commit 7a40f7b

Please sign in to comment.