From 6825b487033aded02342f06042c595b53d41f7d7 Mon Sep 17 00:00:00 2001 From: Thiago Carvalho Date: Mon, 4 Mar 2024 09:10:31 -0300 Subject: [PATCH] fix(license help link) --- lib/components/fs_entry_license_form.dart | 2 +- lib/misc/resources.dart | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/components/fs_entry_license_form.dart b/lib/components/fs_entry_license_form.dart index 76d823f52c..b09e092a76 100644 --- a/lib/components/fs_entry_license_form.dart +++ b/lib/components/fs_entry_license_form.dart @@ -254,7 +254,7 @@ class _FsEntryLicenseFormState extends State { child: GestureDetector( onTap: () { openUrl( - url: Resources.howDoesKeyFileLoginWork, + url: Resources.licenseHelpLink, ); }, child: Text( diff --git a/lib/misc/resources.dart b/lib/misc/resources.dart index 77aad3f274..63097143ba 100644 --- a/lib/misc/resources.dart +++ b/lib/misc/resources.dart @@ -12,6 +12,8 @@ class Resources { static const agreementLink = 'https://ardrive.io/tos-and-privacy/'; static const getWalletLink = 'https://www.arconnect.io/'; static const sendGiftLink = 'http://gift.ardrive.io/'; + static const licenseHelpLink = + 'https://help.ardrive.io/hc/en-us/articles/23162949343131-Licensing-Your-Data'; static const howDoesKeyFileLoginWork = 'https://help.ardrive.io/hc/en-us/articles/15412384724251-How-Do-Keyfile-and-Seed-Phrase-Login-Work-';