From 085659dfef1c8d7eb05b5221f4ef60e6a57fd4b5 Mon Sep 17 00:00:00 2001 From: kennethcheng Date: Tue, 28 Apr 2026 11:46:09 +0800 Subject: [PATCH] =?UTF-8?q?fix(api):=20=E7=A7=BB=E9=99=A4=E5=86=85?= =?UTF-8?q?=E9=83=A8=E8=BE=85=E5=8A=A9=E5=87=BD=E6=95=B0=E7=9A=84=20export?= =?UTF-8?q?=20=E5=85=B3=E9=94=AE=E5=AD=97=EF=BC=8C=E4=BF=AE=E5=A4=8D=20Nex?= =?UTF-8?q?t.js=20Server=20Actions=20=E5=BC=82=E6=AD=A5=E7=BA=A6=E6=9D=9F?= =?UTF-8?q?=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/actions/market.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/market.ts b/src/actions/market.ts index 1c5a3c8..ac30794 100644 --- a/src/actions/market.ts +++ b/src/actions/market.ts @@ -5,7 +5,7 @@ import { assets } from '@/db/schema'; import { eq } from 'drizzle-orm'; import { revalidatePath } from 'next/cache'; -export function getTencentSymbol(asset: { symbol: string; exchange: string | null }): string { +function getTencentSymbol(asset: { symbol: string; exchange: string | null }): string { const cleanSymbol = asset.symbol.trim().toUpperCase().replace(/[^0-9A-Z]/g, ''); switch (asset.exchange) {