mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 06:18:42 +02:00
CODEBASE: Fix React warning when using StatsTable (#1875)
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user