diff --git a/src/features/BuyMatchPopup/components/ConfirmationStep/index.tsx b/src/features/BuyMatchPopup/components/ConfirmationStep/index.tsx deleted file mode 100644 index 20fcb0a5..00000000 --- a/src/features/BuyMatchPopup/components/ConfirmationStep/index.tsx +++ /dev/null @@ -1,49 +0,0 @@ -import { currencySymbols } from 'config' - -import { T9n } from 'features/T9n' -import { - CloseButton, - Header, - HeaderActions, - HeaderTitle, -} from 'features/PopupComponents' - -import { useBuyMatchPopupStore } from '../../store' -import { SubscriptionsList } from '../SubscriptionsList' -import { - Wrapper, - Footer, - Button, - Body, -} from '../../styled' - -export const ConfirmationStep = () => { - const { - close, - selectedSubscription, - subscribeToMatches, - } = useBuyMatchPopupStore() - - return ( - -
- - - - - - -
- - - - -
- ) -} diff --git a/src/features/BuyMatchPopup/components/SubscriptionSelectionStep/index.tsx b/src/features/BuyMatchPopup/components/SubscriptionSelectionStep/index.tsx index 3e428c14..de8d09b2 100644 --- a/src/features/BuyMatchPopup/components/SubscriptionSelectionStep/index.tsx +++ b/src/features/BuyMatchPopup/components/SubscriptionSelectionStep/index.tsx @@ -9,7 +9,6 @@ import { } from 'features/PopupComponents' import { Name } from 'features/Name' -import { Steps } from '../../types' import { useBuyMatchPopupStore } from '../../store' import { SelectedCard } from '../SelectedCard' import { Subscriptions } from '../Subscriptions' @@ -23,9 +22,9 @@ import { export const SubscriptionSelectionStep = () => { const { close, - goTo, match, selectedSubscription, + subscribeToMatch, } = useBuyMatchPopupStore() if (!match) return null @@ -49,7 +48,7 @@ export const SubscriptionSelectionStep = () => {