Skip to content

Commit

Permalink
chore: fix key (deriv-com#14682)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadtaimoor-deriv authored Apr 24, 2024
1 parent 8382cee commit 0111831
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const ContractHistory = ({ currency, history = [] }: TContractHistory) => {
<div className='contract-audit__tabs-content'>
{history.map((item, key) => (
<ContractAuditItem
key={item.order_date}
key={`${key}-${item.order_date}`}
id={`dt_history_label_${key}`}
label={item.display_name}
timestamp={Number(item?.order_date)}
Expand Down

0 comments on commit 0111831

Please sign in to comment.