Skip to content

Commit

Permalink
feat: adding support for Nigeria connected accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanmtz committed Feb 23, 2024
1 parent 148fdec commit 09d3636
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion frontend/src/components/profile/country-picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ export const countryCodes = [
{ country: 'United Kingdom', code: 'GB', image: 'united-kingdom' },
{ country: 'United States', code: 'US', image: 'united-states-of-america' },
{ country: 'Italy', code: 'IT', image: 'italy' },
{ country: 'Portugal', code: 'PT', image: 'portugal' }
{ country: 'Portugal', code: 'PT', image: 'portugal' },
{ country: 'Nigeria', code: 'NG', image: 'nigeria' },
]

const styles = theme => ({
Expand Down
3 changes: 2 additions & 1 deletion modules/users/userBankAccountCreate.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ const currencyMap = {
'SE': 'SEK',
'CH': 'CHF',
'GB': 'GBP',
'US': 'USD'
'US': 'USD',
'NG': 'NGN'
}

const getCurrency = (country) => {
Expand Down

0 comments on commit 09d3636

Please sign in to comment.