Use PaymentContextValue type instead of direct boolean (#23185)

GitOrigin-RevId: 2e1af64a40a4b98f84fbd7a024b1facd18e0fe90
This commit is contained in:
M Fahru
2025-01-30 09:48:32 -07:00
committed by Copybot
parent 3312d97a6b
commit 438bd76c61

View File

@@ -70,5 +70,7 @@ export type PaymentContextValue = {
userCanNotStartRequestedTrial: boolean
showStudentConfirmation: boolean
studentConfirmationChecked: boolean
setStudentConfirmationChecked: React.Dispatch<React.SetStateAction<boolean>>
setStudentConfirmationChecked: React.Dispatch<
React.SetStateAction<PaymentContextValue['studentConfirmationChecked']>
>
}