refactor(help): raise feedback subject cap to 600 characters

Align composed payload size with the 2000-char backend budget
(prefix ~56 + email 255 + subject 600 + description 1000 = 1911).

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Andras Bacsai 2026-04-19 14:48:34 +02:00
parent 233f063850
commit 434f91f83c

View file

@ -15,7 +15,7 @@ class Help extends Component
#[Validate(['required', 'min:10', 'max:1000'])]
public string $description;
#[Validate(['required', 'min:3', 'max:255'])]
#[Validate(['required', 'min:3', 'max:600'])]
public string $subject;
public function submit()