File tree Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -6,15 +6,9 @@ interface IBoxes {
66 type : WrapperCoursesProps [ 'typeBox' ]
77 modalPaymentText : WrapperCoursesProps [ 'modalPaymentText' ]
88 data : ExtendAcademicList
9- soonCourse ?: WrapperCoursesProps [ 'soonCourse' ]
109}
11- export const Boxes = ( {
12- type = 'TRADITIONAL' ,
13- data,
14- modalPaymentText,
15- soonCourse,
16- } : IBoxes ) : JSX . Element => {
17- const common = { data, modalPaymentText, soonCourse }
10+ export const Boxes = ( { type = 'TRADITIONAL' , data, modalPaymentText } : IBoxes ) : JSX . Element => {
11+ const common = { data, modalPaymentText }
1812
1913 const commonImg = {
2014 data,
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ export interface WrapperCoursesProps {
3333
3434 /** Especificación de tipo de caja curso a mostrar. Por default se muestra el tipo TRADITIONAL */
3535 typeBox ?: 'TRADITIONAL' | 'TRADITIONAL_LANDSCAPE' | 'IMAGE_LARGE' | 'IMAGE_SMALL'
36- soonCourse ?: Sooncourse
3736}
3837
3938export interface FooterProps {
You can’t perform that action at this time.
0 commit comments