From b27e5ab017b0ee82ef683bb6b4ccc0b8672d154b Mon Sep 17 00:00:00 2001 From: Adrian Castro <22133246+castdrian@users.noreply.github.com> Date: Wed, 19 Aug 2026 15:24:31 +0200 Subject: [PATCH] fix(launcher): simplify bug report card title --- src/import/LauncherView.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/import/LauncherView.lua b/src/import/LauncherView.lua index 3900680c..38c75357 100644 --- a/src/import/LauncherView.lua +++ b/src/import/LauncherView.lua @@ -2377,7 +2377,7 @@ local function buildBugPanel(imp, x, y, w, availH, m) local reportH = math.max(m.btnH, Kit.textHeight("small") + math.floor(4 * m.s) + reportDetailH) + 2 * pad Kit.card(x, cy, w, reportH) - Kit.text("small", Strings("GitHub bug form"), textX, cy + pad, PAL.heading) + Kit.text("small", Strings("Something not working?"), textX, cy + pad, PAL.heading) Kit.textWrapped("small", reportDetail, textX, cy + pad + Kit.textHeight("small") + math.floor(4 * m.s), reportTextW, PAL.muted, 3)