From 52b59a06713d5d879ae970de5045d150393e0a33 Mon Sep 17 00:00:00 2001 From: hieu-w Date: Mon, 19 Jan 2026 15:32:08 +0700 Subject: [PATCH] fix: adjust QR code modal height value --- packages/modal/src/ui/components/Root/Root.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/modal/src/ui/components/Root/Root.tsx b/packages/modal/src/ui/components/Root/Root.tsx index 15607d8de..17b6bde87 100644 --- a/packages/modal/src/ui/components/Root/Root.tsx +++ b/packages/modal/src/ui/components/Root/Root.tsx @@ -371,12 +371,12 @@ function Root(props: RootProps) { // Wallet Details Screen if (isWalletDetailsExpanded) { - return isPrivacyPolicyOrTncLink ? "640px" : "588px"; + return isPrivacyPolicyOrTncLink ? "680px" : "628px"; } // MetaMask QR Code Screen if (bodyState.metamaskQrCode?.show) { - return isPrivacyPolicyOrTncLink ? "640px" : "588px"; + return isPrivacyPolicyOrTncLink ? "680px" : "628px"; } // Connect Wallet Screen