From a3eae0346319085e0ada3089ff2abf80a86e1b92 Mon Sep 17 00:00:00 2001 From: Isaac Lyman Date: Thu, 15 Feb 2024 10:02:15 -0700 Subject: [PATCH] Update GitHub issue link --- lib/pages/page_help.dart | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/pages/page_help.dart b/lib/pages/page_help.dart index 2b5bdc5..fc577ed 100644 --- a/lib/pages/page_help.dart +++ b/lib/pages/page_help.dart @@ -41,8 +41,11 @@ class BKPageHelp extends StatelessWidget { padding: const EdgeInsets.only(top: 16), child: ElevatedButton( onPressed: () async { - await launchUrl(Uri.parse( - "https://github.com/isaaclyman/bookoscope/issues")); + await launchUrl( + Uri.parse( + "https://github.com/isaaclyman/bookoscope/issues/new/choose", + ), + ); }, style: ElevatedButton.styleFrom( backgroundColor: context.colors.accent.withAlpha(180),