11
jhzh
2025-07-10 410baea0e0e5a74350adc5291cf23cb79ad30daa
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;
}