From 71bae758a91dc3e111b8367cece3a40476d1c2f0 Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Fri, 24 Apr 2026 15:42:46 +0900 Subject: [PATCH] [#987] Move Terms/Privacy consent into RainbowKit connect modal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add appInfo.disclaimer to RainbowKitProvider with Terms and Privacy Policy links - Remove inline consent text from ConnectWallet.tsx - Bump version 1.1.0 → 1.1.1 Co-Authored-By: Claude Opus 4.6 (1M context) --- package-lock.json | 4 ++-- package.json | 2 +- src/app/providers.tsx | 15 ++++++++++++++- src/components/ConnectWallet.tsx | 8 -------- 4 files changed, 17 insertions(+), 12 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1d3c7abb..deed3ad5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "plotlink", - "version": "1.1.0", + "version": "1.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "plotlink", - "version": "1.1.0", + "version": "1.1.1", "workspaces": [ "packages/*" ], diff --git a/package.json b/package.json index 6ea7ed66..1307b069 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plotlink", - "version": "1.1.0", + "version": "1.1.1", "private": true, "workspaces": [ "packages/*" diff --git a/src/app/providers.tsx b/src/app/providers.tsx index b750d7a1..c2eb66b9 100644 --- a/src/app/providers.tsx +++ b/src/app/providers.tsx @@ -90,7 +90,20 @@ export function Providers({ children }: { children: React.ReactNode }) { return ( - + ( + + By connecting, you agree to our{" "} + Terms and{" "} + Privacy Policy. + + ), + }} + > diff --git a/src/components/ConnectWallet.tsx b/src/components/ConnectWallet.tsx index c4c7a5f2..e74f9847 100644 --- a/src/components/ConnectWallet.tsx +++ b/src/components/ConnectWallet.tsx @@ -116,14 +116,6 @@ export function ConnectWallet({ onNavigate, compact }: ConnectWalletProps = {}) > {compact ? "Connect" : "connect wallet"} - {!compact && ( -

- By connecting, you agree to our{" "} - Terms - {" "}and{" "} - Privacy Policy. -

- )} ); }}