Skip to content
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
8 changes: 7 additions & 1 deletion src/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,15 @@
"description": "Learn more about how this works"
},
"connectWalletKeyService_text_consentP2": {
"message": "By agreeing, you provide us consent to automatically access your wallet to securely add a key."
"message": "By agreeing, you consent to us:"
},
"connectWalletKeyService_text_consentP3": {
"message": "Automatically & securely adding a key to your wallet, and"
},
"connectWalletKeyService_text_consentP4": {
"message": "Sharing your browser and extension names with your wallet."
},
"connectWalletKeyService_text_consent_no_access_funds": {
"message": "Please note, this process does not involve accessing or handling your funds."
},
"connectWalletKeyService_label_consentAccept": {
Expand Down
10 changes: 8 additions & 2 deletions src/pages/shared/components/AutoKeyAddConsent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,15 @@ export const AutoKeyAddConsent = ({ onAccept, onDecline, intent }: Props) => {
</a>
</p>

<div className="space-y-2 pt-12 text-medium">
<div className="space-y-2 pt-12 text-medium text-left">
<p>{t('connectWalletKeyService_text_consentP2')}</p>
<p>{t('connectWalletKeyService_text_consentP3')}</p>
<ul className="list-disc px-2 pb-4">
<li>{t('connectWalletKeyService_text_consentP3')}</li>
<li>{t('connectWalletKeyService_text_consentP4')}</li>
</ul>
<p className="text-center">
{t('connectWalletKeyService_text_consent_no_access_funds')}
</p>
</div>

<div className="mx-auto flex w-3/4 justify-around gap-4">
Expand Down