From be3e178e27ed409c3a1247b4e87fabe04d2a6a9d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 11 Sep 2025 23:49:54 +0000 Subject: [PATCH] Add character limits to support wizard: subject (128) and message (4096) Co-authored-by: stnguyen90 <1477010+stnguyen90@users.noreply.github.com> --- src/routes/(console)/supportWizard.svelte | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/routes/(console)/supportWizard.svelte b/src/routes/(console)/supportWizard.svelte index b6a177eb7..a3531d06e 100644 --- a/src/routes/(console)/supportWizard.svelte +++ b/src/routes/(console)/supportWizard.svelte @@ -136,12 +136,14 @@ label="Subject" bind:value={$supportData.subject} placeholder="What do you need help with?" + maxlength={128} required /> + label="Tell us a bit more" + maxlength={4096} />