refactor(payment): remove vip status flow
This commit is contained in:
@@ -5,7 +5,6 @@ import type {
|
||||
PayChannel,
|
||||
PaymentOrderStatus,
|
||||
PaymentPlan,
|
||||
PaymentVipStatusResponse,
|
||||
} from "@/data/dto/payment";
|
||||
|
||||
export interface PaymentState {
|
||||
@@ -17,7 +16,6 @@ export interface PaymentState {
|
||||
currentOrderId: string | null;
|
||||
payParams: Record<string, unknown> | null;
|
||||
orderStatus: PaymentOrderStatus | null;
|
||||
vipStatus: PaymentVipStatusResponse | null;
|
||||
errorMessage: string | null;
|
||||
launchNonce: number;
|
||||
}
|
||||
@@ -31,7 +29,6 @@ export const initialState: PaymentState = {
|
||||
currentOrderId: null,
|
||||
payParams: null,
|
||||
orderStatus: null,
|
||||
vipStatus: null,
|
||||
errorMessage: null,
|
||||
launchNonce: 0,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user