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 } ] 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'])