From f15017a2339293d03ef1ab8ebe5b1bf55fece88a Mon Sep 17 00:00:00 2001 From: Zishan Mohd Date: Mon, 8 Sep 2025 22:13:45 +0530 Subject: [PATCH] Increase Daimo amount limit --- src/app/(mobile-ui)/add-money/crypto/direct/page.tsx | 2 +- src/components/Common/ActionListDaimoPayButton.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/(mobile-ui)/add-money/crypto/direct/page.tsx b/src/app/(mobile-ui)/add-money/crypto/direct/page.tsx index f99263d05..e594b445a 100644 --- a/src/app/(mobile-ui)/add-money/crypto/direct/page.tsx +++ b/src/app/(mobile-ui)/add-money/crypto/direct/page.tsx @@ -92,7 +92,7 @@ export default function AddMoneyCryptoDirectPage() { icon="plus" iconSize={16} minAmount={0.1} - maxAmount={4000} + maxAmount={30_000} onValidationError={setError} disabled={inputTokenAmount === '0.00'} > diff --git a/src/components/Common/ActionListDaimoPayButton.tsx b/src/components/Common/ActionListDaimoPayButton.tsx index 814731366..aec0a7ea2 100644 --- a/src/components/Common/ActionListDaimoPayButton.tsx +++ b/src/components/Common/ActionListDaimoPayButton.tsx @@ -135,7 +135,7 @@ const ActionListDaimoPayButton = () => { onBeforeShow={handleInitiateDaimoPayment} disabled={!usdAmount} minAmount={0.1} - maxAmount={4000} + maxAmount={30_000} loading={isProcessing} onValidationError={(error) => { dispatch(paymentActions.setDaimoError(error))