diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist
index 24ba08c..cb62b88 100644
--- a/ios/Runner/Info.plist
+++ b/ios/Runner/Info.plist
@@ -65,7 +65,6 @@
fetch
remote-notification
- voip
UILaunchStoryboardName
LaunchScreen
diff --git a/lib/provider/chat_provider_model.dart b/lib/provider/chat_provider_model.dart
index 824a19f..00545b2 100644
--- a/lib/provider/chat_provider_model.dart
+++ b/lib/provider/chat_provider_model.dart
@@ -168,7 +168,7 @@ class ChatProviderModel with ChangeNotifier, DiagnosticableTreeMixin {
Future getUserRecentChats() async {
ChatUserModel recentChat = await ChatApiClient().getRecentChats();
ChatUserModel favUList = await ChatApiClient().getFavUsers();
- userGroups = await ChatApiClient().getGroupsByUserId();
+ // userGroups = await ChatApiClient().getGroupsByUserId();
if (favUList.response != null && recentChat.response != null) {
favUsersList = favUList.response!;
favUsersList.sort((ChatUser a, ChatUser b) =>
diff --git a/lib/ui/chat/chat_home.dart b/lib/ui/chat/chat_home.dart
index dc4265f..426c9a2 100644
--- a/lib/ui/chat/chat_home.dart
+++ b/lib/ui/chat/chat_home.dart
@@ -91,7 +91,7 @@ class _ChatHomeState extends State {
child: Row(
children: [
myTab(LocaleKeys.mychats.tr(), 0),
- myTab(LocaleKeys.group.tr(), 1),
+ // myTab(LocaleKeys.group.tr(), 1),
myTab(LocaleKeys.favorite.tr(), 2),
AppState().getempStatusIsManager ? myTab(LocaleKeys.myTeam.tr(), 3) : const SizedBox(),
],
@@ -107,7 +107,7 @@ class _ChatHomeState extends State {
},
children: [
ChatHomeScreen(),
- GropChatHomeScreen(),
+ // GropChatHomeScreen(),
ChatFavoriteUsersScreen(),
AppState().getempStatusIsManager ? const MyTeamScreen() : const SizedBox(),
],
diff --git a/lib/ui/marathon/marathon_screen.dart b/lib/ui/marathon/marathon_screen.dart
index 6dbbd18..d5fc8c4 100644
--- a/lib/ui/marathon/marathon_screen.dart
+++ b/lib/ui/marathon/marathon_screen.dart
@@ -81,8 +81,8 @@ class MarathonScreen extends StatelessWidget {
displayLocalizedContent(
isPhoneLangArabic: AppState().isArabic(context),
selectedLanguage: provider.demoMarathonDetailModel.selectedLanguage!,
- arabicContent: AppState().memberInformationList!.eMPLOYEEDISPLAYNAMEAr!,
- englishContent: AppState().memberInformationList!.eMPLOYEEDISPLAYNAMEEn!,
+ arabicContent: AppState().memberInformationList!.eMPLOYEEDISPLAYNAMEAr ?? "",
+ englishContent: AppState().memberInformationList!.eMPLOYEEDISPLAYNAMEEn ?? "",
).toText22(
color: MyColors.grey3AColor,
isCentered: true,