From c8654bc4605eb0d10f8d15cfd1b1adf180164da1 Mon Sep 17 00:00:00 2001 From: Mohd Zishan <72738005+Zishan-7@users.noreply.github.com> Date: Thu, 7 Aug 2025 18:34:26 +0530 Subject: [PATCH 1/2] Remove device not supported modal (#1073) --- src/app/(setup)/setup/page.tsx | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/src/app/(setup)/setup/page.tsx b/src/app/(setup)/setup/page.tsx index 600e2667a..325a62f8a 100644 --- a/src/app/(setup)/setup/page.tsx +++ b/src/app/(setup)/setup/page.tsx @@ -170,22 +170,7 @@ export default function SetupPage() { ) } - if (showDeviceNotSupportedModal) { - return ( - {}} // no action on close for this modal - title="Device not supported!" - description="This device doesn't support some of the technologies Peanut needs to work properly. Please try opening this link on a newer phone." - icon={'alert' as IconName} - preventClose={true} - hideModalCloseButton={true} - ctas={[]} - /> - ) - } - - if (showBrowserNotSupportedModal) { + if (showBrowserNotSupportedModal || showDeviceNotSupportedModal) { return } From f74e9b42bc5878a3010838dfa0b737a6999f1b2a Mon Sep 17 00:00:00 2001 From: Kushagra Sarathe <76868364+kushagrasarathe@users.noreply.github.com> Date: Thu, 7 Aug 2025 18:54:12 +0530 Subject: [PATCH 2/2] hot-fix: show mexico accounts in saved accounts (#1075) --- src/components/AddWithdraw/AddWithdrawRouterView.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/AddWithdraw/AddWithdrawRouterView.tsx b/src/components/AddWithdraw/AddWithdrawRouterView.tsx index b010cfb5f..b531748ff 100644 --- a/src/components/AddWithdraw/AddWithdrawRouterView.tsx +++ b/src/components/AddWithdraw/AddWithdrawRouterView.tsx @@ -62,7 +62,10 @@ export const AddWithdrawRouterView: FC = ({ setIsLoadingPreferences(true) if (flow === 'withdraw') { const bankAccounts = - user?.accounts.filter((acc) => acc.type === AccountType.IBAN || acc.type === AccountType.US) ?? [] + user?.accounts.filter( + (acc) => + acc.type === AccountType.IBAN || acc.type === AccountType.US || acc.type === AccountType.CLABE + ) ?? [] if (bankAccounts.length > 0) { setSavedAccounts(bankAccounts as unknown as Account[])