finish users table

This commit is contained in:
Fred KISSIE
2026-03-23 21:09:49 +01:00
parent 6d0e10a4aa
commit 0461b5a764
2 changed files with 10 additions and 4 deletions

View File

@@ -107,7 +107,14 @@ export default async function UsersPage(props: UsersPageProps) {
/>
<UserProvider user={user!}>
<OrgProvider org={org}>
<UsersTable users={userRows} />
<UsersTable
users={userRows}
rowCount={pagination.total}
pagination={{
pageIndex: pagination.page - 1,
pageSize: pagination.pageSize
}}
/>
</OrgProvider>
</UserProvider>
</>