From 00c106f69e5859a46c0670a2702fb9635e1d6bb7 Mon Sep 17 00:00:00 2001 From: D-K-P <8297864+D-K-P@users.noreply.github.com> Date: Thu, 25 Jun 2026 11:29:56 +0100 Subject: [PATCH] chore(webapp): prefix dashboard feedback thread titles with "Web app:" Distinguishes contact form submissions made from the dashboard from those made on the marketing site in the support inbox. --- apps/webapp/app/routes/resources.feedback.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/webapp/app/routes/resources.feedback.ts b/apps/webapp/app/routes/resources.feedback.ts index bc6e3c3084..62b13b518b 100644 --- a/apps/webapp/app/routes/resources.feedback.ts +++ b/apps/webapp/app/routes/resources.feedback.ts @@ -12,42 +12,42 @@ export const feedbackTypes = { bug: { label: "Bug report", labelTypeId: "lt_01HB920BTPFS36KH1JT9C36YVY", - threadTitle: "Contact form: Bug report", + threadTitle: "Web app: Bug report", }, feature: { label: "Feature request", labelTypeId: "lt_01HB920BV8CJGYXVE15WWN6P07", - threadTitle: "Contact form: Feature request", + threadTitle: "Web app: Feature request", }, help: { label: "Help me out", labelTypeId: "lt_01KTVCAPZY5ZJ0SS4ACMXWYYT3", - threadTitle: "Contact form: Help me out", + threadTitle: "Web app: Help me out", }, enterprise: { label: "Enterprise enquiry", labelTypeId: "lt_01K7PF5EV2877EH4SZYB667FW4", - threadTitle: "Contact form: Enterprise enquiry", + threadTitle: "Web app: Enterprise enquiry", }, feedback: { label: "General feedback", labelTypeId: "lt_01HB920BSRZ3RA1ETHBVEB5ST2", - threadTitle: "Contact form: General feedback", + threadTitle: "Web app: General feedback", }, concurrency: { label: "Increase my concurrency", labelTypeId: "lt_01KTVCCY2PDE5V6WV2PQ8N85K2", - threadTitle: "Contact form: Increase my concurrency", + threadTitle: "Web app: Increase my concurrency", }, region: { label: "Suggest a new region", labelTypeId: "lt_01KTVCDPYYBW6KS9H5V8MTQ0GG", - threadTitle: "Contact form: Suggest a new region", + threadTitle: "Web app: Suggest a new region", }, hipaa: { label: "HIPAA BAA request", labelTypeId: "lt_01KS54WBRYKE6DY369KPK2SS4W", - threadTitle: "Contact form: HIPAA BAA request", + threadTitle: "Web app: HIPAA BAA request", }, } as const satisfies Record< string,