diff --git a/src/components/PrivacyPolicy/index.tsx b/src/components/PrivacyPolicy/index.tsx index 3677727d92..257474595b 100644 --- a/src/components/PrivacyPolicy/index.tsx +++ b/src/components/PrivacyPolicy/index.tsx @@ -137,12 +137,12 @@ export function PrivacyPolicy() { - + - Protocol Disclaimer + Privacy Policy diff --git a/src/components/WalletModal/index.tsx b/src/components/WalletModal/index.tsx index d6ec0c05c8..fafa3e55c3 100644 --- a/src/components/WalletModal/index.tsx +++ b/src/components/WalletModal/index.tsx @@ -315,32 +315,24 @@ export default function WalletModal({ function getTermsOfService(nftFlagEnabled: boolean, walletView: string) { if (nftFlagEnabled && walletView === WALLET_VIEWS.PENDING) return null + + const content = ( + + By connecting a wallet, you agree to Uniswap Labs’{' '} + Terms of Service and consent to its{' '} + Privacy Policy. + + ) return nftFlagEnabled ? ( - - By connecting a wallet, you agree to Uniswap Labs’{' '} - Terms of Service and consent to - its Privacy Policy. - + {content} ) : ( - - - By connecting a wallet, you agree to Uniswap Labs’{' '} - - Terms of Service - {' '} - and acknowledge that you have read and understand the Uniswap{' '} - - Protocol Disclaimer - - . - - + {content} )