target="_blank" is not working for the modal popup window,link is opening in the same page and opup is getting close.
<TermLink to="/legal/privacy-policy" target="_blank">
Privacy Policy*
</TermLink>
and the termlink are below:
export const TermLink = styled(Link)`
font-size: 12px;
font-weight: 500;
text-transform: uppercase;
text-decoration: underline;
font-family: ${(props) => props.theme.font.sansRegular};
color: ${(props) => props.theme.color.core.blue};
`;
please let me know how I can fix this
I resolved by using next link:
<Link href="/legal/rewards" passHref>
<a target="_blank" className="TermLinkAction" rel="noopener noreferrer">
Rewards Policy*
</a>
</Link>