Skip to content

Commit

Permalink
fix: link noopener
Browse files Browse the repository at this point in the history
  • Loading branch information
minikas committed Jun 19, 2024
1 parent 03783a1 commit 5d962e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/hestia/src/components/direct/History/linkCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const LinkCard = ({ value = "" }: { value?: string }) => {
const shortData = truncateString(value);
const href = `https://polkadex.subscan.io/block/${value}`;
return (
<Link target="_blank" href={href}>
<Link target="_blank" rel="noopener noreferrer" href={href}>
<div className="flex items-center gap-1">
<RiExternalLinkLine className="w-3.5 h-3.5 text-actionInput" />
<Typography.Text appearance="primary" size="sm">
Expand Down

0 comments on commit 5d962e3

Please sign in to comment.