Skip to content

Commit 71ba332

Browse files
committed
Linting fix eslint
1 parent f9a47a9 commit 71ba332

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

site/src/components/UsersTable/UsersTable.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -86,19 +86,19 @@ export const UsersTable: React.FC<UsersTableProps> = ({
8686
// Return either suspend or activate depending on status
8787
(u.status === "active"
8888
? [
89-
{
90-
label: Language.suspendMenuItem,
91-
onClick: onSuspendUser,
92-
},
93-
]
89+
{
90+
label: Language.suspendMenuItem,
91+
onClick: onSuspendUser,
92+
},
93+
]
9494
: [
95-
{
96-
label: Language.activateMenuItem,
97-
// TODO: Activate user
98-
// eslint-disable-next-line @typescript-eslint/no-empty-function
99-
onClick: function () {},
100-
},
101-
]
95+
{
96+
label: Language.activateMenuItem,
97+
// TODO: Activate user
98+
// eslint-disable-next-line @typescript-eslint/no-empty-function
99+
onClick: function () {},
100+
},
101+
]
102102
).concat({
103103
label: Language.resetPasswordMenuItem,
104104
onClick: onResetUserPassword,

0 commit comments

Comments
 (0)