Skip to content

Commit

Permalink
fix: registration disclaimer opening new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
RobChangCA committed Sep 13, 2024
1 parent cc09285 commit 88a8aba
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ import { ls } from "../../../../strings.js";
export const RegistrationDisclaimer = () => (
<div className="flex flex-row gap-2 justify-center mb-3">
<span className="text-fg-tertiary text-xs">{ls.login.tosPrefix}</span>
{/* eslint-disable-next-line jsx-a11y/anchor-is-valid */}
<a href="#" className="text-btn-primary text-xs underline">
<a
className="text-btn-primary text-xs underline"
href="https://www.alchemy.com/terms-conditions/end-user-terms"
target="_blank"
rel="noreferrer noopener"
>
{ls.login.tosLink}
</a>
</div>
Expand Down

0 comments on commit 88a8aba

Please sign in to comment.