fix: remove stray 0 when no data is in users table (#10584)

This commit is contained in:
Michael Smith 2023-11-08 09:06:14 -05:00 committed by GitHub
parent f418983f23
commit 057b43a935
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ export const UsersPageView: FC<React.PropsWithChildren<UsersPageViewProps>> = ({
authMethods={authMethods} authMethods={authMethods}
/> />
{count && ( {count !== undefined && (
<PaginationWidgetBase <PaginationWidgetBase
count={count} count={count}
limit={limit} limit={limit}