@@ -8,9 +8,9 @@ interface Question {
8
8
title : string ;
9
9
tags : string [ ] ;
10
10
categories : string [ ] ;
11
- constraints : string [ ] ;
11
+ // constraints: string[];
12
12
difficulty : string ;
13
- description : string ;
13
+ // description: string;
14
14
}
15
15
16
16
const ITEMS_PER_PAGE_OPTIONS = [ 5 , 10 ] ; // Number of items to display per page
@@ -59,9 +59,9 @@ const InterviewQuestionsTable: React.FC = () => {
59
59
< TableCell > Title</ TableCell >
60
60
< TableCell > Tags</ TableCell >
61
61
< TableCell > Categories</ TableCell >
62
- < TableCell > Constraints</ TableCell >
62
+ { /* <TableCell>Constraints</TableCell> */ }
63
63
< TableCell > Difficulty</ TableCell >
64
- < TableCell > Description</ TableCell >
64
+ { /* <TableCell>Description</TableCell> */ }
65
65
</ TableRow >
66
66
</ TableHead >
67
67
< TableBody >
@@ -70,9 +70,9 @@ const InterviewQuestionsTable: React.FC = () => {
70
70
< TableCell > { question . title } </ TableCell >
71
71
< TableCell > { question . tags . join ( ', ' ) } </ TableCell >
72
72
< TableCell > { question . categories . join ( ', ' ) } </ TableCell >
73
- < TableCell > { question . constraints . join ( ', ' ) } </ TableCell >
73
+ { /* <TableCell>{question.constraints.join(', ')}</TableCell> */ }
74
74
< TableCell > { question . difficulty } </ TableCell >
75
- < TableCell > { question . description } </ TableCell >
75
+ { /* <TableCell>{question.description}</TableCell> */ }
76
76
</ TableRow >
77
77
) ) }
78
78
</ TableBody >
0 commit comments