Skip to content

Commit

Permalink
CDP-448 add links to TOS
Browse files Browse the repository at this point in the history
  • Loading branch information
b-pmcg committed Oct 24, 2019
1 parent 4eaa63e commit c4b55b9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/components/CDPCreateScreens/CDPCreateConfirmCDP.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ const CDPCreateConfirmSummary = ({
<Text color="grey.500">
{lang.formatString(
lang.terms_of_service_text,
<Link>{lang.terms_of_service}</Link>
<Link href="/terms" target="_blank">
{lang.terms_of_service}
</Link>
)}
</Text>
</Grid>
Expand Down
8 changes: 6 additions & 2 deletions src/components/CDPMigrateScreens/PayAndMigrate.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,9 @@ const ConfirmMigrate = ({ onClose, dispatch, onNext }) => {
<Text t="caption" color="steel">
{lang.formatString(
lang.terms_of_service_text,
<Link>{lang.terms_of_service}</Link>
<Link href="/terms" target="_blank">
{lang.terms_of_service}
</Link>
)}
</Text>
</Grid>
Expand Down Expand Up @@ -208,7 +210,9 @@ const ConfirmMigrate = ({ onClose, dispatch, onNext }) => {
<Text t="caption" color="steel">
{lang.formatString(
lang.terms_of_service_text,
<Link>{lang.terms_of_service}</Link>
<Link href="/terms" target="_blank">
{lang.terms_of_service}
</Link>
)}
</Text>
</Grid>
Expand Down
4 changes: 3 additions & 1 deletion src/components/DSRDepositScreens/DSRDepositConfirm.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ const DSRDepositConfirmSummary = ({
<Text color="grey.500">
{lang.formatString(
lang.terms_of_service_text,
<Link>{lang.terms_of_service}</Link>
<Link href="/terms" target="_blank">
{lang.terms_of_service}
</Link>
)}
</Text>
</Grid>
Expand Down

0 comments on commit c4b55b9

Please sign in to comment.