1
jhzh
2026-01-15 d11b87e417d7881bfb335f07ad008d7671a9daf2
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;
}