Skip to content

Commit

Permalink
fix: open info page in new tab (#3582)
Browse files Browse the repository at this point in the history
  • Loading branch information
schmanu committed Apr 18, 2024
1 parent f6c0bd5 commit 9903344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/dashboard/ActivityRewardsSection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const ActivityRewardsSection = () => {
<NextLink href={appUrl} passHref rel="noreferrer" onClick={onClick}>
<Button variant="contained">{'Get Safe{Pass}'}</Button>
</NextLink>
<NextLink href="https://safe.global/pass" passHref rel="noreferrer" onClick={onClick}>
<NextLink href="https://safe.global/pass" target="_blank" passHref rel="noreferrer" onClick={onClick}>
<Button variant="outlined">Learn more</Button>
</NextLink>
</Box>
Expand Down

1 comment on commit 9903344

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.
Category Percentage Covered / Total
🟡 Statements 79.13% 11233/14196
🔴 Branches 58.69% 2665/4541
🟡 Functions 66.09% 1807/2734
🟢 Lines 80.4% 10121/12588

Test suite run success

1421 tests passing in 198 suites.

Report generated by 🧪jest coverage report action from 9903344

Please sign in to comment.