feat: update Topup interface with status and paid_at fields; modify table display for topup details

This commit is contained in:
2025-07-05 17:53:32 +05:00
parent a41be97cdf
commit ef7121f247
3 changed files with 18 additions and 25 deletions

View File

@ -64,6 +64,8 @@ export interface Topup {
name: string;
};
paid: boolean;
status: "CANCELLED" | "PENDING" | "VERIFIED";
paid_at: string | null;
mib_reference: string | null;
expires_at: string;
is_expired: boolean;