From 3ab145c2fca8db34eec827fc48784f3fc24fa4d7 Mon Sep 17 00:00:00 2001 From: Hugo Montenegro Date: Thu, 30 Oct 2025 08:15:58 -0300 Subject: [PATCH 1/2] redirect foodies --- redirects.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/redirects.json b/redirects.json index 60ffd0561..b114f310d 100644 --- a/redirects.json +++ b/redirects.json @@ -44,5 +44,10 @@ "source": "/events", "destination": "https://luma.com/zwh7l3ro", "permanent": false + }, + { + "source": "/foodie", + "destination": "https://peanutprotocol.notion.site/Peanut-Foodie-Guide-29a83811757980e79896f2a610d6591a", + "permanent": false } ] From 6dfb2fe0166d9d3eca6af9da6361bc73f3aa4e9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Ram=C3=ADrez?= Date: Thu, 30 Oct 2025 16:52:45 -0300 Subject: [PATCH 2/2] chore: disable bolivia --- src/components/AddMoney/consts/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/AddMoney/consts/index.ts b/src/components/AddMoney/consts/index.ts index 5898d37d9..84622879a 100644 --- a/src/components/AddMoney/consts/index.ts +++ b/src/components/AddMoney/consts/index.ts @@ -2532,7 +2532,6 @@ export const BRIDGE_ALPHA3_TO_ALPHA2: { [key: string]: string } = { export const MANTECA_ALPHA3_TO_ALPHA2: { [key: string]: string } = { ARG: 'AR', - BOL: 'BO', BRA: 'BR', } @@ -2541,7 +2540,7 @@ export const ALL_COUNTRIES_ALPHA3_TO_ALPHA2: { [key: string]: string } = { ...MANTECA_ALPHA3_TO_ALPHA2, } -const enabledBankWithdrawCountries = new Set([...Object.values(BRIDGE_ALPHA3_TO_ALPHA2), 'US', 'MX', 'AR', 'BO']) +const enabledBankWithdrawCountries = new Set([...Object.values(BRIDGE_ALPHA3_TO_ALPHA2), 'US', 'MX', 'AR']) const enabledBankDepositCountries = new Set([...Object.values(BRIDGE_ALPHA3_TO_ALPHA2), 'US', 'MX', 'AR'])