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 {
6
6
type : WrapperCoursesProps [ 'typeBox' ]
7
7
modalPaymentText : WrapperCoursesProps [ 'modalPaymentText' ]
8
8
data : ExtendAcademicList
9
- soonCourse ?: WrapperCoursesProps [ 'soonCourse' ]
10
9
}
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 }
18
12
19
13
const commonImg = {
20
14
data,
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ export interface WrapperCoursesProps {
33
33
34
34
/** Especificación de tipo de caja curso a mostrar. Por default se muestra el tipo TRADITIONAL */
35
35
typeBox ?: 'TRADITIONAL' | 'TRADITIONAL_LANDSCAPE' | 'IMAGE_LARGE' | 'IMAGE_SMALL'
36
- soonCourse ?: Sooncourse
37
36
}
38
37
39
38
export interface FooterProps {
You can’t perform that action at this time.
0 commit comments