From 2f8547869f9e2a4db1013e984313a7f20d301598 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Sun, 18 May 2025 09:38:31 +0200 Subject: [PATCH] chore: Let users decide for the title in error reporter --- lib/utils/error_reporter.dart | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/utils/error_reporter.dart b/lib/utils/error_reporter.dart index 7690e4370..95511a9e2 100644 --- a/lib/utils/error_reporter.dart +++ b/lib/utils/error_reporter.dart @@ -49,10 +49,7 @@ class ErrorReporter { onPressed: () => launchUrl( AppConfig.newIssueUrl.resolveUri( Uri( - queryParameters: { - 'template': 'bug_report.yaml', - 'title': '[BUG]: ${message ?? error.toString()}', - }, + queryParameters: {'template': 'bug_report.yaml'}, ), ), mode: LaunchMode.externalApplication,