File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -184,10 +184,10 @@ export const UsersTableBody: FC<
184
184
) as React . ReactNode ,
185
185
onClick : onMarkUserDormant ,
186
186
disabled : user . id === actorID ,
187
- }
187
+ } ,
188
188
]
189
189
: user . status === "suspended"
190
- ? [
190
+ ? [
191
191
{
192
192
label : t (
193
193
"activateMenuItem" ,
@@ -196,7 +196,8 @@ export const UsersTableBody: FC<
196
196
disabled : false ,
197
197
} ,
198
198
]
199
- : [ // User account is dormant
199
+ : [
200
+ // User account is dormant
200
201
{
201
202
label : t (
202
203
"activateMenuItem" ,
Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ export const Language = {
30
30
activateDialogMessagePrefix : "Do you want to activate the user" ,
31
31
markUserDormantDialogTitle : "Mark user dormant" ,
32
32
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" ,
34
35
}
35
36
36
37
const getSelectedUser = ( id : string , users ?: User [ ] ) =>
You can’t perform that action at this time.
0 commit comments