We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c31113 commit aa77686Copy full SHA for aa77686
clients/apps/web/src/components/Checkout/Checkout.tsx
@@ -17,6 +17,7 @@ import ShadowBox, {
17
} from 'polarkit/components/ui/atoms/shadowbox'
18
import { useCallback, useState } from 'react'
19
import { FormProvider, useForm } from 'react-hook-form'
20
+import { CheckoutCard } from './CheckoutCard'
21
import { CheckoutForm } from './CheckoutForm'
22
import { CheckoutInfo } from './CheckoutInfo'
23
@@ -117,6 +118,10 @@ export const Checkout = ({
117
118
return (
119
<ShadowBox className="dark:bg-polar-900 flex flex-col gap-y-12 bg-white">
120
<FormProvider {...form}>
121
+ <CheckoutCard
122
+ checkout={checkout}
123
+ onCheckoutUpdate={onCheckoutUpdate}
124
+ />
125
<CheckoutForm
126
checkout={checkout}
127
onCheckoutUpdate={onCheckoutUpdate}
0 commit comments