From 5dfb843c29fdcc1693961b70a36ddee3fea85a4a Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Fri, 27 Feb 2026 16:33:11 +0800
Subject: [PATCH] 1
---
src/utils/allocation.js | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/utils/allocation.js b/src/utils/allocation.js
index 0880674..6ae9336 100644
--- a/src/utils/allocation.js
+++ b/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;
}
--
Gitblit v1.9.3