Skip to content

Commit 05cd577

Browse files
committed
make fmt
1 parent b86f636 commit 05cd577

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

site/src/components/UsersTable/UsersTableBody.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,10 @@ export const UsersTableBody: FC<
184184
) as React.ReactNode,
185185
onClick: onMarkUserDormant,
186186
disabled: user.id === actorID,
187-
}
187+
},
188188
]
189189
: user.status === "suspended"
190-
? [
190+
? [
191191
{
192192
label: t(
193193
"activateMenuItem",
@@ -196,7 +196,8 @@ export const UsersTableBody: FC<
196196
disabled: false,
197197
},
198198
]
199-
: [ // User account is dormant
199+
: [
200+
// User account is dormant
200201
{
201202
label: t(
202203
"activateMenuItem",

site/src/pages/UsersPage/UsersPage.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ export const Language = {
3030
activateDialogMessagePrefix: "Do you want to activate the user",
3131
markUserDormantDialogTitle: "Mark user dormant",
3232
markUserDormantDialogAction: "Mark dormant",
33-
markUserDormantDialogMessagePrefix: "Do you want to mark the user account dormant",
33+
markUserDormantDialogMessagePrefix:
34+
"Do you want to mark the user account dormant",
3435
}
3536

3637
const getSelectedUser = (id: string, users?: User[]) =>

0 commit comments

Comments
 (0)