From ed50b127edc1e472f820eec5a8f820a5117ffdd9 Mon Sep 17 00:00:00 2001 From: FestplattenSchnitzel <45077355+FestplattenSchnitzel@users.noreply.github.com> Date: Sun, 8 Sep 2024 12:52:26 +0200 Subject: [PATCH] Fix typo in crash report template (#1075) --- .../ui/settings/crashreporter/CrashReportScreenVM.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/ui/src/main/java/de/mm20/launcher2/ui/settings/crashreporter/CrashReportScreenVM.kt b/app/ui/src/main/java/de/mm20/launcher2/ui/settings/crashreporter/CrashReportScreenVM.kt index 633dc2ee..b9ab4d1d 100644 --- a/app/ui/src/main/java/de/mm20/launcher2/ui/settings/crashreporter/CrashReportScreenVM.kt +++ b/app/ui/src/main/java/de/mm20/launcher2/ui/settings/crashreporter/CrashReportScreenVM.kt @@ -29,7 +29,7 @@ class CrashReportScreenVM : ViewModel() { val body = "## Description\n\n" + "*Please provide as many information about the crash as possible (What did you do before the crash happened? Steps to reproduce?)*\n\n" + - "## Strack trace\n\n" + + "## Stack trace\n\n" + "```\n" + "${stacktrace}\n" + "```\n\n" + @@ -60,4 +60,4 @@ class CrashReportScreenVM : ViewModel() { context.startActivity(Intent.createChooser(intent, "Share via")) } -} \ No newline at end of file +}