diff --git a/lib/presentation/contact_us/live_chat_page.dart b/lib/presentation/contact_us/live_chat_page.dart index 0fd14b6c..107f5ba4 100644 --- a/lib/presentation/contact_us/live_chat_page.dart +++ b/lib/presentation/contact_us/live_chat_page.dart @@ -258,7 +258,7 @@ class LiveChatPage extends StatelessWidget { workGroup: workGroup, onSuccess: (response) { debugPrint("Chat Request ID received: ${contactUsVM.chatRequestID}"); - chatURL = "https://chat.hmg.com/Index.aspx?RequestedId=${contactUsVM.chatRequestID}"; + chatURL = "https://chat.hmg.com/geneysChat/Index.aspx?RequestedId=${contactUsVM.chatRequestID}"; debugPrint("Chat URL: $chatURL"); }, onError: (error) { diff --git a/lib/presentation/my_invoices/my_invoices_list.dart b/lib/presentation/my_invoices/my_invoices_list.dart index 2dbbaf12..addebea2 100644 --- a/lib/presentation/my_invoices/my_invoices_list.dart +++ b/lib/presentation/my_invoices/my_invoices_list.dart @@ -120,23 +120,23 @@ class _MyInvoicesListState extends State { return Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - SizedBox(height: 16.h), - CustomTabBar( - activeTextColor: Color(0xffED1C2B), - activeBackgroundColor: Color(0xffED1C2B).withValues(alpha: .1), - initialIndex: 0, - tabs: [ - CustomTabBarModel(null, LocaleKeys.visitsOrders.tr(context: context)), - CustomTabBarModel(null, LocaleKeys.pharmacy.tr(context: context)), - ], - onTabChange: (index) { - myInvoicesVM.onTabChanged(index); - if (index == 1 && myInvoicesVM.allPharmacyInvoicesList.isEmpty) { - // Load pharmacy invoices when pharmacy tab is selected and list is empty - myInvoicesVM.getAllPharmacyInvoices(); - } - }, - ).paddingSymmetrical(24.h, 0.h), + // SizedBox(height: 16.h), + // CustomTabBar( + // activeTextColor: Color(0xffED1C2B), + // activeBackgroundColor: Color(0xffED1C2B).withValues(alpha: .1), + // initialIndex: 0, + // tabs: [ + // CustomTabBarModel(null, LocaleKeys.visitsOrders.tr(context: context)), + // CustomTabBarModel(null, LocaleKeys.pharmacy.tr(context: context)), + // ], + // onTabChange: (index) { + // myInvoicesVM.onTabChanged(index); + // if (index == 1 && myInvoicesVM.allPharmacyInvoicesList.isEmpty) { + // // Load pharmacy invoices when pharmacy tab is selected and list is empty + // myInvoicesVM.getAllPharmacyInvoices(); + // } + // }, + // ).paddingSymmetrical(24.h, 0.h), myInvoicesVM.selectedTabIndex == 0 ? Column( children: [ SizedBox(height: 16.h),