Skip to content

Commit 2bee78d

Browse files
Wrong count used (#225)
1 parent 9b2c9af commit 2bee78d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fast_api/routes/organization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def get_mapped_sorted_paginated_users(
362362
return pack_json_result(
363363
{
364364
"mappedSortedPaginatedUsers": data,
365-
"fullCountUsers": len(active_users),
365+
"fullCountUsers": len(data),
366366
},
367367
wrap_for_frontend=False, # needed because it's used like this on the frontend (kratos values)
368368
)

0 commit comments

Comments
 (0)