Fix typo in crash report template (#1075)

This commit is contained in:
FestplattenSchnitzel 2024-09-08 12:52:26 +02:00 committed by GitHub
parent 5274b615dd
commit ed50b127ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,7 +29,7 @@ class CrashReportScreenVM : ViewModel() {
val body = val body =
"## Description\n\n" + "## 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" + "*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" + "```\n" +
"${stacktrace}\n" + "${stacktrace}\n" +
"```\n\n" + "```\n\n" +
@ -60,4 +60,4 @@ class CrashReportScreenVM : ViewModel() {
context.startActivity(Intent.createChooser(intent, "Share via")) context.startActivity(Intent.createChooser(intent, "Share via"))
} }
} }