From c4b84f050d145be8f4c8d4eb967959b46e00ea51 Mon Sep 17 00:00:00 2001 From: lemarjohnny781 Date: Sun, 30 Aug 2026 12:57:27 +0000 Subject: [PATCH 1/3] fix: prevent numpad from overlapping amount display on short mobile screens - Remove min-h-screen constraint from inner container to allow content to adapt - Add max-height constraint to amount display section - Ensures numpad remains visible on viewports under 700px height (e.g., iPhone SE) --- components/send/send-page-client.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/send/send-page-client.tsx b/components/send/send-page-client.tsx index b743a896..5b0c8bf6 100644 --- a/components/send/send-page-client.tsx +++ b/components/send/send-page-client.tsx @@ -115,7 +115,7 @@ export function SendPageClient() { return (
-
+
{/* ── Header ── */}
+

Payment Request

+
+ +
+ {/* ── Payment amount card ── */} +
+

+ Amount requested +

+
+ + {MOCK_REQUEST.amount} + + + {MOCK_REQUEST.currency} + +
+

+ on Stellar network via {MOCK_REQUEST.asset} +

+
+ + {/* ── Request details ── */} +
+
+

+ Requested by +

+

+ {MOCK_REQUEST.requesterName} +

+
+ {MOCK_REQUEST.description && ( +
+

+ Description +

+

+ {MOCK_REQUEST.description} +

+
+ )} +
+

+ Expires +

+

+ {MOCK_REQUEST.expiresAt.toLocaleString()} +

+
+
+ + {/* ── QR Code card ── */} +
+
+ +
+ +

+ Scan with {MOCK_REQUEST.asset} wallet to pay this request +

+
+ + {/* ── Wallet address ── */} +
+
+

+ Payment address +

+

+ {MOCK_REQUEST.requesterWallet} +

+
+
+ +
+
+ + {/* ── Mobile camera button ── */} + {isMobile && ( + + )} + + {/* ── Scanned address confirmation ── */} + {scannedAddress && ( +
+ +
+

Payment detected

+

+ From: {scannedAddress.slice(0, 10)}...{scannedAddress.slice(-10)} +

+
+
+ )} +
+
+ + {/* ── QR Scanner Modal ── */} + {scannerOpen && ( + setScannerOpen(false)} + /> + )} +
+ ) +} From 682eba5336ba86eee6d74ce815d625e8c85670c5 Mon Sep 17 00:00:00 2001 From: lemarjohnny781 Date: Sun, 30 Aug 2026 21:45:56 +0000 Subject: [PATCH 3/3] chore: exclude helpcenter tests from Jest config --- jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jest.config.js b/jest.config.js index d7236148..5ce576db 100644 --- a/jest.config.js +++ b/jest.config.js @@ -30,6 +30,7 @@ const customJestConfig = { }, }, testMatch: ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)'], + testPathIgnorePatterns: ['/node_modules/', '/.next/', '/helpcenter/'], } module.exports = createJestConfig(customJestConfig)