feat(user): add admin topup functionality in user details page

This commit is contained in:
2025-07-27 12:37:38 +05:00
parent 3943c0d6c8
commit 644e4f730f
11 changed files with 447 additions and 287 deletions
+1 -2
View File
@@ -98,7 +98,6 @@ export interface NewPayment {
amount: number;
}
export interface WalletTransaction {
id: string;
user: Pick<User, "id" | "id_card" | "mobile"> & {
@@ -109,4 +108,4 @@ export interface WalletTransaction {
description: string;
reference_id: string;
created_at: string;
}
}