member update msisdn agent

This commit is contained in:
unknown
2025-06-04 11:13:34 +07:00
parent 4e2a12324d
commit d5fed442a9
2 changed files with 4 additions and 5 deletions

View File

@ -45,7 +45,8 @@ export default function CustomerWallet({customerid}: any) {
<tbody>
{customerWallet.map((item:any, index) => (
<tr
key={item.id}
// key={item.id}
key={item.id ?? `wallet-${index}`}
className={`${
index % 2 === 0 ? "bg-gray-50" : "bg-white"
} hover:bg-gray-100`}