Skip to content

Commit

Permalink
Remove optional chaining
Browse files Browse the repository at this point in the history
  • Loading branch information
koechkevin committed Oct 6, 2023
1 parent 60d77e9 commit 57626a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/charterafrica/src/components/Tool/Tool.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const Tool = React.forwardRef(function Tool(props, ref) {
{name}
</RichTypography>
{externalLink?.href ? (
<Link href={externalLink?.href}>
<Link href={externalLink.href}>
<SvgIcon
inheritViewBox
component={ExternalLink}
Expand Down

0 comments on commit 57626a2

Please sign in to comment.