chore(admin-ui): add key for gift-cards table cells map fn (#6154)

![image](https://github.com/medusajs/medusa/assets/24707417/e13ff43b-770e-4698-bb9a-e22b866069f6)
This commit is contained in:
invalid w
2024-01-22 09:43:23 +00:00
committed by GitHub
parent 06b33a9b45
commit 3f41d818b6
@@ -184,7 +184,7 @@ const GiftCardTable = () => {
className="group"
>
{row.cells.map((cell, index) => {
return cell.render("Cell", { index })
return cell.render("Cell", { index, key: index })
})}
</Table.Row>
)