From 3a8d509ba38d37f29228fa6dcad82a6d97ea1be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Puello?= <124838068+03Jesus@users.noreply.github.com> Date: Fri, 2 Jan 2026 10:27:00 -0500 Subject: [PATCH 1/2] Colombian Peso is added to the currency list. --- src/config/currencies.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config/currencies.js b/src/config/currencies.js index 447481e..be43c3d 100644 --- a/src/config/currencies.js +++ b/src/config/currencies.js @@ -31,5 +31,6 @@ export const DefaultCurrencies = { TRY: { symbol: '₺', name: 'Turkish Lira', position: 'before' }, UAH: { symbol: '₴', name: 'Ukrainian Hryvnia', position: 'before' }, USD: { symbol: '$', name: 'US Dollar', position: 'before' }, - ZAR: { symbol: 'R', name: 'South African Rand', position: 'before' } + ZAR: { symbol: 'R', name: 'South African Rand', position: 'before' }, + COP: { symbol: 'Col$', name: 'Colombian Peso', position: 'before'} }; From 7a35b3163080e7e6c6234205123d7515e7877b74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Puello?= <124838068+03Jesus@users.noreply.github.com> Date: Sun, 4 Jan 2026 11:53:02 -0500 Subject: [PATCH 2/2] Colombian peso is added to the currency list. Now in the correct alphabetical order --- src/config/currencies.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/currencies.js b/src/config/currencies.js index be43c3d..53ba0ee 100644 --- a/src/config/currencies.js +++ b/src/config/currencies.js @@ -5,6 +5,7 @@ export const DefaultCurrencies = { CAD: { symbol: 'C$', name: 'Canadian Dollar', position: 'before' }, CHF: { symbol: 'Fr', name: 'Swiss Franc', position: 'before' }, CNY: { symbol: '¥', name: 'Chinese Yuan', position: 'before' }, + COP: { symbol: 'Col$', name: 'Colombian Peso', position: 'before'}, CZK: { symbol: 'Kč', name: 'Czech Republic Koruna', position: 'after' }, DKK: { symbol: 'kr', name: 'Danish Krone', position: 'after' }, EUR: { symbol: '€', name: 'Euro', position: 'before' }, @@ -31,6 +32,5 @@ export const DefaultCurrencies = { TRY: { symbol: '₺', name: 'Turkish Lira', position: 'before' }, UAH: { symbol: '₴', name: 'Ukrainian Hryvnia', position: 'before' }, USD: { symbol: '$', name: 'US Dollar', position: 'before' }, - ZAR: { symbol: 'R', name: 'South African Rand', position: 'before' }, - COP: { symbol: 'Col$', name: 'Colombian Peso', position: 'before'} + ZAR: { symbol: 'R', name: 'South African Rand', position: 'before' } };