Skip to content

Commit 777765c

Browse files
committed
Fix status type
1 parent 0ea7235 commit 777765c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/admin/customUserStatus/AddCustomUserStatus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function AddCustomUserStatus({ goToNew, close, setCache, ...props }) {
3131
['online', t('Online')],
3232
['busy', t('Busy')],
3333
['away', t('Away')],
34-
['invisible', t('Invisible')],
34+
['offline', t('Offline')],
3535
];
3636

3737
return <Box display='flex' flexDirection='column' textStyle='p1' textColor='default' mbs='x20' {...props}>

client/admin/customUserStatus/EditCustomUserStatus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export function EditCustomUserStatus({ close, setCache, setModal, data, ...props
129129
['online', t('Online')],
130130
['busy', t('Busy')],
131131
['away', t('Away')],
132-
['invisible', t('Invisible')],
132+
['offline', t('Offline')],
133133
];
134134

135135
return <Box display='flex' flexDirection='column' textStyle='p1' textColor='default' mbs='x20' {...props}>

0 commit comments

Comments
 (0)