jhzh
2025-08-27 ef2e2e3f9c6d37cc47b14ce0444fb75e6aa19dd1
src/utils/allocation.js
@@ -1,4 +1,4 @@
export const $USD = "₹";
export const $USD = "¥";
export const $USDT = "INR";
export function $toLocaleString(
@@ -17,7 +17,7 @@
  number = number || 0;
  let str = Number(number).toLocaleString(locale, options);
  if (showCurrencySymbol) {
    str = str.replace("₹", "");
    str = str.replace("¥", "");
  }
  return str;
}