From 6a1640ff6db05078aab1f525e5db960feae19db9 Mon Sep 17 00:00:00 2001 From: gsinghpal Date: Tue, 19 May 2026 21:37:31 -0400 Subject: [PATCH] =?UTF-8?q?fix(claims):=20shorten=20intake=5Fmode=20labels?= =?UTF-8?q?=20=E2=80=94=20single=20line=20in=20radio?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The group title already says "How were pages 11 & 12 provided?", so the radio labels don't need to repeat "Pages 11 & 12". Shortened to: "Inside the original application" / "Separate file" / "Sign remotely". Co-Authored-By: Claude Opus 4.7 (1M context) --- fusion_claims/wizard/application_received_wizard.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fusion_claims/wizard/application_received_wizard.py b/fusion_claims/wizard/application_received_wizard.py index 28b6912a..19a05f20 100644 --- a/fusion_claims/wizard/application_received_wizard.py +++ b/fusion_claims/wizard/application_received_wizard.py @@ -33,9 +33,9 @@ class ApplicationReceivedWizard(models.TransientModel): intake_mode = fields.Selection( selection=[ - ('bundled', 'Pages 11 & 12 are INCLUDED in the original application'), - ('separate', 'Pages 11 & 12 are a SEPARATE file'), - ('remote', 'Pages 11 & 12 will be SIGNED REMOTELY'), + ('bundled', 'Inside the original application'), + ('separate', 'Separate file'), + ('remote', 'Sign remotely'), ], string='Intake Mode', required=True,