diff --git a/apps/admin/src/utils/walletTx.ts b/apps/admin/src/utils/walletTx.ts index 0d714e7..655a868 100644 --- a/apps/admin/src/utils/walletTx.ts +++ b/apps/admin/src/utils/walletTx.ts @@ -82,7 +82,7 @@ const WALLET_REMARK_EXACT: Record = { export function walletRemarkLabel( remark: string | null | undefined, transactionType: string, - t: (key: string, params?: Record) => string, + t: (key: string, params?: Record) => string, ): string { const raw = remark?.trim(); if (!raw) { diff --git a/apps/admin/src/views/Settlement.vue b/apps/admin/src/views/Settlement.vue index 92bf6ea..aefb355 100644 --- a/apps/admin/src/views/Settlement.vue +++ b/apps/admin/src/views/Settlement.vue @@ -24,6 +24,7 @@ import { betResultLabel, } from '../utils/bet-labels'; import { markAdminListStale } from '../utils/adminListStale'; +import { adminSelectionLabel } from '../utils/adminSelectionLabel'; import type { AdminMatchDetail } from './match-form'; import AdminSubNav from '../components/AdminSubNav.vue';