From c747985821a725fd34794b44e45bbf87e2be93d2 Mon Sep 17 00:00:00 2001 From: Alexander Zinchuk Date: Sat, 2 Nov 2024 21:11:28 +0400 Subject: [PATCH] Fix lang for service notification chat --- src/global/helpers/users.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/global/helpers/users.ts b/src/global/helpers/users.ts index 22b383ab3..74c23bd05 100644 --- a/src/global/helpers/users.ts +++ b/src/global/helpers/users.ts @@ -69,7 +69,7 @@ export function getUserStatus( lang: LangFn, user: ApiUser, userStatus: ApiUserStatus | undefined, ) { if (user.id === SERVICE_NOTIFICATIONS_USER_ID) { - return lang('ServiceNotifications').toLowerCase(); + return lang('ServiceNotifications'); } if (user.isSupport) {