Fix missing flags for PEN, UYU, PYG and BOB

This commit is contained in:
Reckless_Satoshi 2022-02-15 14:16:25 -08:00
parent e392f14b18
commit e8b28d794d
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
2 changed files with 5 additions and 1 deletions

View File

@ -30,5 +30,9 @@ export default function getFlags(code){
if(code == 'USD') return '🇺🇸';
if(code == 'ZAR') return '🇿🇦';
if(code == 'COP') return '🇨🇴';
if(code == 'PEN') return '🇵🇪';
if(code == 'UYU') return '🇺🇾';
if(code == 'PYG') return '🇵🇾';
if(code == 'BOB') return '🇧🇴';
return '🏳';
};

File diff suppressed because one or more lines are too long