Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change ToS link label #531

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function TermsOfServiceAck({
}) {
return instanceName === 'dYdX' ? (
<div className="text-center leading-tight">
{prefix ?? 'By accessing this website, you agree to our '}{' '}
{prefix ?? 'By accessing this website, you agree to dYdX v3'}{' '}
<Link href="https://dydx.exchange/terms">Terms of Use</Link>
</div>
) : null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ function EscapeHatchActionPage(props: Props) {
</ForcedActionCard>
) : null}
<TermsOfServiceAck
prefix="By initiating the escape process, you agree to our"
prefix="By initiating the escape, you agree to dYdX v3"
instanceName={props.context.instanceName}
/>
<Button className="w-full" size="lg">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function NewSpotForcedWithdrawalPage(props: Props) {
</div>
<div className="flex flex-col gap-2">
<TermsOfServiceAck
prefix="By initiating this action you agree to our"
prefix="By initiating this action you agree to dYdX v3"
instanceName={props.context.instanceName}
/>
<Button className="w-full" size="lg">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function NewPerpetualForcedTradeFormContent(
</ForcedActionCard>
</div>
<TermsOfServiceAck
prefix="By initiating this action you agree to our"
prefix="By initiating this action you agree to dYdX v3"
instanceName={props.instanceName}
/>
<div className="flex flex-col gap-2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function NewPerpetualForcedWithdrawalFormContent(
</ForcedActionCard>
</div>
<TermsOfServiceAck
prefix="By initiating this action you agree to our"
prefix="By initiating this action you agree to dYdX v3"
instanceName={props.instanceName}
/>
<div className="flex flex-col gap-2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function UserQuickActionsTable(props: UserQuickActionsTableProps) {
return (
<Card className="flex flex-col gap-6 border border-brand">
<TermsOfServiceAck
prefix="By performing following actions you agree to our"
prefix="By performing following actions you agree to dYdX v3"
instanceName={props.context.instanceName}
/>
{props.withdrawableAssets.length > 0 && <WithdrawableAssets {...props} />}
Expand Down
Loading