Fix Show All Paginate

This commit is contained in:
2022-07-27 14:39:00 +07:00
parent 214a2f3ce2
commit 7d2a1d6e98
4 changed files with 4 additions and 3 deletions

View File

@@ -422,7 +422,7 @@ export default function PlanList() {
) : (
<TableBody>
{dataTableData.data.map(row => (
<Row key={row.code} row={row} />
<Row key={row.id} row={row} />
))}
</TableBody>
)

View File

@@ -404,7 +404,7 @@ export default function CorporatePlanList() {
) : (
<TableBody>
{dataTableData.data.map(row => (
<Row key={row.code} row={row} />
<Row key={row.id} row={row} />
))}
</TableBody>
)