File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
frontend/src/components/Questions Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ interface Question {
10
10
categories : string [ ] ;
11
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
@@ -61,7 +61,7 @@ const InterviewQuestionsTable: React.FC = () => {
61
61
< TableCell > Categories</ TableCell >
62
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 >
@@ -72,7 +72,7 @@ const InterviewQuestionsTable: React.FC = () => {
72
72
< TableCell > { question . categories . join ( ', ' ) } </ TableCell >
73
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 >
You can’t perform that action at this time.
0 commit comments