Add chat gifts and relationship diary UI
Docker Image / Quality and Bundle Budgets (push) Successful in 3s
Docker Image / Build and Push Docker Image (push) Has been cancelled

This commit is contained in:
Codex
2026-07-21 17:41:18 +08:00
parent 4c512d323e
commit 7ed97af68e
54 changed files with 1950 additions and 69 deletions
+2
View File
@@ -16,6 +16,7 @@ export interface PaymentContextState {
planCatalog: MachineContext["planCatalog"];
plans: MachineContext["plans"];
giftCategories: MachineContext["giftCategories"];
giftOffer: MachineContext["giftOffer"];
giftProducts: MachineContext["giftProducts"];
selectedGiftCategory: string | null;
isFirstRecharge: MachineContext["isFirstRecharge"];
@@ -71,6 +72,7 @@ function selectPaymentState(state: PaymentSnapshot): PaymentContextState {
planCatalog: state.context.planCatalog,
plans: state.context.plans,
giftCategories: state.context.giftCategories,
giftOffer: state.context.giftOffer,
giftProducts: state.context.giftProducts,
selectedGiftCategory: state.context.selectedGiftCategory,
isFirstRecharge: state.context.isFirstRecharge,