mirror of
https://github.com/meshtastic/web.git
synced 2026-04-29 02:04:08 -04:00
Try to fix old stuff
This commit is contained in:
@@ -94,8 +94,7 @@ export const Table = ({ headings, rows }: TableProps): JSX.Element => {
|
||||
<tr key={index}>
|
||||
{row.map((item, index) => (
|
||||
<td
|
||||
// biome-ignore lint/suspicious/noArrayIndexKey: OK because column order never changes.
|
||||
key={index}
|
||||
key={item.key ?? index}
|
||||
className="whitespace-nowrap py-2 text-sm text-textSecondary first:pl-2"
|
||||
>
|
||||
{item}
|
||||
|
||||
Reference in New Issue
Block a user