Skip to content

Commit 2b5a082

Browse files
committed
Remove decscription from Question Table
1 parent 1e9ac22 commit 2b5a082

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/src/components/Questions/QuestionsTable.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ interface Question {
1010
categories: string[];
1111
constraints: string[];
1212
difficulty: string;
13-
description: string;
13+
//description: string;
1414
}
1515

1616
const ITEMS_PER_PAGE_OPTIONS = [5, 10]; // Number of items to display per page
@@ -61,7 +61,7 @@ const InterviewQuestionsTable: React.FC = () => {
6161
<TableCell>Categories</TableCell>
6262
<TableCell>Constraints</TableCell>
6363
<TableCell>Difficulty</TableCell>
64-
<TableCell>Description</TableCell>
64+
{/* <TableCell>Description</TableCell> */}
6565
</TableRow>
6666
</TableHead>
6767
<TableBody>
@@ -72,7 +72,7 @@ const InterviewQuestionsTable: React.FC = () => {
7272
<TableCell>{question.categories.join(', ')}</TableCell>
7373
<TableCell>{question.constraints.join(', ')}</TableCell>
7474
<TableCell>{question.difficulty}</TableCell>
75-
<TableCell>{question.description}</TableCell>
75+
{/* <TableCell>{question.description}</TableCell> */}
7676
</TableRow>
7777
))}
7878
</TableBody>

0 commit comments

Comments
 (0)