Skip to content

Commit

Permalink
fix/880:users list in tenant Setting is not correctly shown (#887)
Browse files Browse the repository at this point in the history
  • Loading branch information
helakaraa authored Oct 3, 2024
1 parent 20ab1e3 commit 2ac0bb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion izanami-frontend/src/pages/tenantSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export function TenantSettings(props: { tenant: string }) {
invitedUsers={usersQuery.data?.map((user) => user.username) || []}
/>
)}
<TenantUsers tenant={tenant} usersData={usersQuery} />
<TenantUsers tenant={tenant} usersData={usersQuery.data} />
<hr />
<h2 className="mt-4">Update tenant information</h2>
<div className="d-flex align-items-center justify-content-between p-2">
Expand Down

0 comments on commit 2ac0bb2

Please sign in to comment.