@@ -58,13 +56,13 @@ const LiveResults: React.FC = ({ questions, showSelectedQuesti
-
+
);
diff --git a/client/src/components/LiveResults/LiveResultsTable.tsx b/client/src/components/LiveResults/LiveResultsTable.tsx
deleted file mode 100644
index bb81b80..0000000
--- a/client/src/components/LiveResults/LiveResultsTable.tsx
+++ /dev/null
@@ -1,215 +0,0 @@
-import React, { useMemo } from 'react';
-import { Paper, Table, TableBody, TableCell, TableContainer, TableFooter, TableHead, TableRow } from '@mui/material';
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
-import { faCheck, faCircleXmark } from '@fortawesome/free-solid-svg-icons';
-import { StudentType } from 'src/Types/StudentType';
-import { QuestionType } from '../../Types/QuestionType';
-import { FormattedTextTemplate } from '../GiftTemplate/templates/TextTypeTemplate';
-
-interface LiveResultsTableProps {
- students: StudentType[];
- questions: QuestionType[];
- showCorrectAnswers: boolean;
- showSelectedQuestion: (index: number) => void;
- showUsernames: boolean;
-}
-
-const LiveResultsTable: React.FC