refactor(web): dependency management (#2386)

This commit is contained in:
Mo
2023-08-05 12:48:39 -05:00
committed by GitHub
parent b07da5b663
commit d8d4052a52
274 changed files with 4065 additions and 3873 deletions

View File

@@ -3,12 +3,12 @@ import { FunctionComponent } from 'react'
import PurchaseFlowView from './PurchaseFlowView'
import { PurchaseFlowWrapperProps } from './PurchaseFlowWrapperProps'
const PurchaseFlowWrapper: FunctionComponent<PurchaseFlowWrapperProps> = ({ viewControllerManager, application }) => {
if (!viewControllerManager.purchaseFlowController.isOpen) {
const PurchaseFlowWrapper: FunctionComponent<PurchaseFlowWrapperProps> = ({ application }) => {
if (!application.purchaseFlowController.isOpen) {
return null
}
return <PurchaseFlowView viewControllerManager={viewControllerManager} application={application} />
return <PurchaseFlowView application={application} />
}
export default observer(PurchaseFlowWrapper)