diff --git a/src/features/BuyMatchPopup/components/ConfirmationStep/index.tsx b/src/features/BuyMatchPopup/components/ConfirmationStep/index.tsx index a5a3af39..20fcb0a5 100644 --- a/src/features/BuyMatchPopup/components/ConfirmationStep/index.tsx +++ b/src/features/BuyMatchPopup/components/ConfirmationStep/index.tsx @@ -20,9 +20,8 @@ import { export const ConfirmationStep = () => { const { close, - selectedSubscriptions, + selectedSubscription, subscribeToMatches, - totalPrice, } = useBuyMatchPopupStore() return ( @@ -36,11 +35,13 @@ export const ConfirmationStep = () => { - +
diff --git a/src/features/BuyMatchPopup/components/SubscriptionSelectionStep/index.tsx b/src/features/BuyMatchPopup/components/SubscriptionSelectionStep/index.tsx index 76ae8e78..3e428c14 100644 --- a/src/features/BuyMatchPopup/components/SubscriptionSelectionStep/index.tsx +++ b/src/features/BuyMatchPopup/components/SubscriptionSelectionStep/index.tsx @@ -25,6 +25,7 @@ export const SubscriptionSelectionStep = () => { close, goTo, match, + selectedSubscription, } = useBuyMatchPopupStore() if (!match) return null @@ -47,6 +48,7 @@ export const SubscriptionSelectionStep = () => {