CODEBASE: Fix React warning when using StatsTable (#1875)

This commit is contained in:
catloversg
2025-01-13 01:49:52 +07:00
committed by GitHub
parent 1525e51cbb
commit 1d31e066f0

View File

@@ -31,7 +31,9 @@ export function StatsTable({ rows, title, wide, textAlign, paddingLeft }: StatsT
<TableRow key={rowIndex}>
{row.map((cell, cellIndex) => (
<TableCell key={cellIndex} className={cellIndex === 0 ? classes.firstCell : classes.nonFirstCell}>
<Typography noWrap>{cell}</Typography>
<Typography component="div" noWrap>
{cell}
</Typography>
</TableCell>
))}
</TableRow>