feat: dont wrap column names with table head

This commit is contained in:
amhsirak
2025-12-26 20:10:28 +05:30
parent 40326046aa
commit 339ac2b692

View File

@@ -591,7 +591,6 @@ export const RecordingsTable = ({
<> <>
<TableContainer component={Paper} sx={{ width: '100%', overflow: 'hidden', marginTop: '15px' }}> <TableContainer component={Paper} sx={{ width: '100%', overflow: 'hidden', marginTop: '15px' }}>
<Table stickyHeader aria-label="sticky table"> <Table stickyHeader aria-label="sticky table">
<TableHead>
<TableRow> <TableRow>
{columns.map((column) => ( {columns.map((column) => (
<MemoizedTableCell <MemoizedTableCell
@@ -602,7 +601,6 @@ export const RecordingsTable = ({
</MemoizedTableCell> </MemoizedTableCell>
))} ))}
</TableRow> </TableRow>
</TableHead>
<TableBody> <TableBody>
{visibleRows.map((row) => ( {visibleRows.map((row) => (
<TableRowMemoized <TableRowMemoized