feat(billing): show user display name in ledger records

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
john
2026-08-04 14:18:17 +08:00
parent a4d46f2b1e
commit f8317e8312
3 changed files with 7 additions and 2 deletions
+1
View File
@@ -282,6 +282,7 @@ export type LedgerEntry = {
id: number;
userId: string;
username: string;
displayName: string;
type: 'recharge' | 'deduct' | 'refund' | 'adjust';
amountCents: number;
tokens: number;