efril #7

Merged
aefril merged 23 commits from efril into main 2025-09-12 21:12:53 +00:00
Showing only changes of commit ce344e4a98 - Show all commits

View File

@ -333,6 +333,9 @@ const AccountListTable = () => {
</div> </div>
</div> </div>
<div className='overflow-x-auto'> <div className='overflow-x-auto'>
{isLoading ? (
<Loading />
) : (
<table className={tableStyles.table}> <table className={tableStyles.table}>
<thead> <thead>
{table.getHeaderGroups().map(headerGroup => ( {table.getHeaderGroups().map(headerGroup => (
@ -390,6 +393,7 @@ const AccountListTable = () => {
</tbody> </tbody>
)} )}
</table> </table>
)}
</div> </div>
<TablePagination <TablePagination