diff --git a/apps/mobile-mzima-client/src/app/profile/profile/profile.page.html b/apps/mobile-mzima-client/src/app/profile/profile/profile.page.html index 58a3b72e7c..8b2521f0a8 100644 --- a/apps/mobile-mzima-client/src/app/profile/profile/profile.page.html +++ b/apps/mobile-mzima-client/src/app/profile/profile/profile.page.html @@ -28,25 +28,18 @@ title="Help and Support" (modalClose)="isSupportModalOpen = false" > - - -
- {{ supportItem.title }} - {{ supportItem.description }} + + +
+ {{"app.contact_support" | translate}} + + {{"app.contact_support_desc_1" |translate}} + {{"app.contact_support_desc_2" | translate}} + {{"app.contact_support_desc_3" | translate}} +
-
- - - {{"app.nothing_found" | translate}} - - diff --git a/apps/mobile-mzima-client/src/app/profile/profile/profile.page.ts b/apps/mobile-mzima-client/src/app/profile/profile/profile.page.ts index a34d4eb619..21e997bbc6 100644 --- a/apps/mobile-mzima-client/src/app/profile/profile/profile.page.ts +++ b/apps/mobile-mzima-client/src/app/profile/profile/profile.page.ts @@ -46,14 +46,15 @@ export class ProfilePage { this.profileMenu = profileMenu.profileMenu.filter( (i) => i.isLoggedGuard === undefined || i.isLoggedGuard === !!userData.userId, ); - if (userData.userId) - this.supportItems.push({ - title: 'Intercom', - description: 'Contact Ushahidi staff for chat support', - action: () => { - this.intercomService.displayMessenger(); - }, - }); + // if (userData.userId) { + // this.supportItems.push({ + // title: 'Intercom', + // description: 'Contact Ushahidi staff for chat support', + // action: () => { + // this.intercomService.displayMessenger(); + // }, + // }); + // } }); } diff --git a/apps/mobile-mzima-client/src/assets/locales/en.json b/apps/mobile-mzima-client/src/assets/locales/en.json index 035a58299b..45944b304e 100644 --- a/apps/mobile-mzima-client/src/assets/locales/en.json +++ b/apps/mobile-mzima-client/src/assets/locales/en.json @@ -98,6 +98,10 @@ "my_posts_desc":"Post you’ve created", "logout" : "Logout", "login_register":"Log in or Sign up", - "add_edit_collection":"Add or Edit collections" + "add_edit_collection":"Add or Edit collections", + "contact_support":"Contact Support", + "contact_support_desc_1":"Head over to ", + "contact_support_desc_2": "our support-pages", + "contact_support_desc_3": "to get help with Ushahidi." } } \ No newline at end of file