Skip to content

Commit

Permalink
feat: Remove FAQ and Official website from help center #2943
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Oct 23, 2024
1 parent 22e52f3 commit 7a186fd
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,18 +103,18 @@ class HelpCenterView extends StatelessWidget {
},
),
],
DrawerItem(
title: l10n.faqs,
onTap: () {
Navigator.of(context).push<void>(FAQsPage.route());
},
),
DrawerItem(
onTap: () {
LaunchUrl.launch('https://${AltMeStrings.appContactWebsiteName}');
},
title: l10n.officialWebsite,
),
// DrawerItem(
// title: l10n.faqs,
// onTap: () {
// Navigator.of(context).push<void>(FAQsPage.route());
// },
// ),
// DrawerItem(
// onTap: () {
// LaunchUrl.launch('https://${AltMeStrings.appContactWebsiteName}');
// },
// title: l10n.officialWebsite,
// ),
],
),
);
Expand Down

0 comments on commit 7a186fd

Please sign in to comment.