Skip to content

Commit

Permalink
Try to fix old stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
KomelT committed Jan 24, 2025
1 parent ec6906a commit 7930f44
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/generic/Table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 7930f44

Please sign in to comment.