We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c016605 commit 3e34891Copy full SHA for 3e34891
clients/apps/web/src/components/Subscriptions/CustomerCancellationModal.tsx
@@ -42,7 +42,7 @@ const CancellationReasonRadio = ({
42
}
43
44
interface CustomerCancellationModalProps
45
- extends Omit<ModalProps, 'modalContent'> {
+ extends Omit<ModalProps, 'title' | 'modalContent'> {
46
subscription: schemas['CustomerSubscription']
47
cancelSubscription: ReturnType<typeof useCustomerCancelSubscription>
48
onAbort?: () => void
@@ -103,6 +103,7 @@ const CustomerCancellationModal = ({
103
return (
104
<Modal
105
{...props}
106
+ title="Cancel Subscription"
107
className="md:min-w-[600px]"
108
modalContent={
109
<div className="flex flex-col gap-y-6 p-6 sm:p-12">
0 commit comments