Commit e62f40cc authored by Mahmoud Aglan's avatar Mahmoud Aglan

Extend pricing calculator slider max to 20 million EGP

Co-Authored-By: 's avatarClaude Sonnet 4.6 <noreply@anthropic.com>
parent 83225004
...@@ -733,8 +733,8 @@ function initPricingCalc() { ...@@ -733,8 +733,8 @@ function initPricingCalc() {
const currencyLabel = isSA ? 'ر.س' : 'ج.م'; const currencyLabel = isSA ? 'ر.س' : 'ج.م';
const minCollections = 10000; const minCollections = 10000;
const maxCollections = 500000; const maxCollections = 20000000;
const step = 5000; const step = 10000;
function formatAmount(amount) { function formatAmount(amount) {
return new Intl.NumberFormat('ar-EG', { style: 'currency', currency: currencyCode, maximumFractionDigits: 0 }).format(amount); return new Intl.NumberFormat('ar-EG', { style: 'currency', currency: currencyCode, maximumFractionDigits: 0 }).format(amount);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment