From ef2e2e3f9c6d37cc47b14ce0444fb75e6aa19dd1 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Wed, 27 Aug 2025 18:12:21 +0800
Subject: [PATCH] 零时提交

---
 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..d38f24d 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