Merge pull request #23149 from overleaf/mf-disable-paypal-submit-unchecked-student-confirm

[web] Disable paypal submit button if student confirmation checkbox is not checked

GitOrigin-RevId: 3c8ca624399e249a48ac0be48cb0c5c0b4170d30
This commit is contained in:
M Fahru
2025-01-28 07:00:57 -07:00
committed by Copybot
parent 523b9a833b
commit 30f2e52589

View File

@@ -69,4 +69,6 @@ export type PaymentContextValue = {
updateCountry: (country: PricingFormState['country']) => void
userCanNotStartRequestedTrial: boolean
showStudentConfirmation: boolean
studentConfirmationChecked: boolean
setStudentConfirmationChecked: React.Dispatch<React.SetStateAction<boolean>>
}