Skip to content

Commit 57bb614

Browse files
committed
Merge branch 'bq/refactor-users-service' of https://github.com/coder/coder into bq/refactor-users-service
2 parents 735fde8 + 5eb2321 commit 57bb614

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

site/src/pages/UsersPage/UsersPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ export const UsersPage: FC<{ children?: ReactNode }> = () => {
225225
}}
226226
description={
227227
<>
228-
Do you want to activate the user{" "}
228+
Do you want to activate{" "}
229229
<strong>{confirmActivateUser?.username ?? ""}</strong>?
230230
</>
231231
}

site/src/pages/UsersPage/UsersPageView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export const UsersPageView: FC<React.PropsWithChildren<UsersPageViewProps>> = ({
9494
authMethods={authMethods}
9595
/>
9696

97-
{count !== undefined && (
97+
{count && (
9898
<PaginationWidgetBase
9999
count={count}
100100
limit={limit}

0 commit comments

Comments
 (0)