fix form update manage wallet

- remove validation
- add .join to merge value group from response
This commit is contained in:
Wikzyy
2025-03-28 11:16:11 +07:00
parent 1c80e64000
commit c66dd3ec85
2 changed files with 16 additions and 25 deletions

View File

@ -112,7 +112,8 @@ const ManageWalletContextProvider = ({ children }: { children: React.ReactNode }
);
},
meta: {
headerClassName: 'w-[100px]'
headerClassName: 'w-[100px] text-center',
cellClassName: 'text-center'
}
},
{
@ -140,7 +141,7 @@ const ManageWalletContextProvider = ({ children }: { children: React.ReactNode }
);
},
meta: {
headerClassName: 'w-[100px]',
headerClassName: 'w-[100px] text-center',
cellClassName: 'text-center'
}
}
@ -185,7 +186,7 @@ const ManageWalletContextProvider = ({ children }: { children: React.ReactNode }
<Toaster expand visibleToasts={9} duration={3000} />
<DataGridProvider
columns={columns}
pagination={{ size: 5 }}
pagination={{ size: 25 }}
toolbar={<ListToolbar />}
layout={{ card: true }}
sorting={[{ id: 'id', desc: false }]}