Skip to content

Commit

Permalink
Update tablerow key
Browse files Browse the repository at this point in the history
  • Loading branch information
pmakode-akamai committed Jan 9, 2025
1 parent a5bb56c commit 1599819
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ export const DomainRecordTable = (props: DomainRecordTableProps) => {
) : (
paginatedData.map((data, idx) => {
return (
<TableRow data-qa-record-row={type.title} key={idx}>
<TableRow
data-qa-record-row={type.title}
key={`domain-record-${idx}`}
>
{type.columns.length > 0 &&
type.columns.map(({ render, title }, columnIndex) => {
return (
Expand Down

0 comments on commit 1599819

Please sign in to comment.