From 80fba70576c349de85bcd2d9af87b9fc9cbc0a55 Mon Sep 17 00:00:00 2001 From: sxbt <137571657+SXBT69@users.noreply.github.com> Date: Mon, 25 Mar 2024 13:31:34 +0000 Subject: [PATCH] fix: update FAQ link in app_info_screen.dart FAQ Link is outdated related to https://github.com/get10101/10101.github.io/pull/74#issuecomment-2017998319 --- mobile/lib/common/settings/app_info_screen.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/common/settings/app_info_screen.dart b/mobile/lib/common/settings/app_info_screen.dart index 6cfda9eb1..793081870 100644 --- a/mobile/lib/common/settings/app_info_screen.dart +++ b/mobile/lib/common/settings/app_info_screen.dart @@ -209,7 +209,7 @@ class _AppInfoScreenState extends State { onPressed: () async { final messenger = ScaffoldMessenger.of(context); final httpsUri = - Uri(scheme: "https", host: "10101.finance", path: "blog/faq"); + Uri(scheme: "https", host: "10101.finance", path: "docs/faq"); if (await canLaunchUrl(httpsUri)) { await launchUrl(httpsUri, mode: LaunchMode.externalApplication); } else {