Skip to content

Commit

Permalink
Merge pull request #86 from moneyadviceservice/2889-Fix-broken-links-…
Browse files Browse the repository at this point in the history
…on-TID

2889: Fix broken links on Travel Insurance Directory
  • Loading branch information
benlovell authored Oct 29, 2021
2 parents 46b9ed7 + df0fa5c commit 80d6236
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moneypensionservice/directories",
"version": "2.0.0",
"version": "2.0.1",
"description": "Directories React Component Library",
"homepage": "https://moneyadviceservice.github.io/react_library/",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/components/CompanyCard/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const CompanyCard = ({
{/** Buttons */}
{!online && <Info>{lng.getInTouch.noInfo}</Info>}
{phone && (
<CardButton href={`tel:${phone}`}>
<CardButton href={`tel:${phone}`} target="_blank">
<PhoneIcon />
{phone}
</CardButton>
Expand All @@ -111,7 +111,7 @@ const CompanyCard = ({
</CardButton>
)}
{email && (
<CardButton href={`mailto:${email}`}>
<CardButton href={`mailto:${email}`} target="_blank">
<EnvelopeIcon />
{lng.getInTouch.email}
</CardButton>
Expand Down

0 comments on commit 80d6236

Please sign in to comment.