Skip to content

Commit b72fdb4

Browse files
committed
fix: nanofix
1 parent 4b9897f commit b72fdb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/PaginatedTable/TableRow.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export const LoadingTableRow = typedMemo(function <T>({columns, height}: Loading
5050

5151
return (
5252
<TableRowCell
53-
key={`${column.name}`}
53+
key={column.name}
5454
height={height}
5555
width={column.width}
5656
align={column.align}
@@ -85,7 +85,7 @@ export const TableRow = <T,>({row, columns, getRowClassName, height}: TableRowPr
8585

8686
return (
8787
<TableRowCell
88-
key={`${column.name}`}
88+
key={column.name}
8989
height={height}
9090
width={column.width}
9191
align={column.align}

0 commit comments

Comments
 (0)