What potential issue is the user facing when trying to open the link in a new tab?

The potential issue the user is facing when trying to open the link in a new tab is that the link may have a target attribute set to "_self" or "_parent" instead of "_blank", which would cause the link to open in the same tab or parent frame instead of a new tab. To solve this issue, the user can update the target attribute of the link to "_blank" so that it opens in a new tab.

<a href="https://example.com" target="_blank">Link Text</a>