feat(wallet): update transaction type from CREDIT to TOPUP and display total debit/credit amounts
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 5m27s

This commit is contained in:
2025-07-26 00:17:22 +05:00
parent e0b76bb865
commit e9af120c7b
2 changed files with 40 additions and 14 deletions

View File

@ -105,7 +105,7 @@ export interface WalletTransaction {
name: string;
};
amount: number;
transaction_type: "DEBIT" | "CREDIT";
transaction_type: "DEBIT" | "TOPUP";
description: string;
reference_id: string;
created_at: string;