From 5feab991ec6c8153ff81cef9a6119597d7e24d02 Mon Sep 17 00:00:00 2001 From: Knee Cola Date: Wed, 31 Dec 2025 10:53:04 +0100 Subject: [PATCH] refactor: reorder language selector before email input MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Moved the language selector to appear before the email address field for better UX flow. Users now select the notification language first, then enter the email address that will receive notifications in that language. Also applied right-alignment to the "new email" status indicator for consistency. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- web-app/app/ui/LocationEditForm.tsx | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/web-app/app/ui/LocationEditForm.tsx b/web-app/app/ui/LocationEditForm.tsx index 736ba7d..f9edc50 100644 --- a/web-app/app/ui/LocationEditForm.tsx +++ b/web-app/app/ui/LocationEditForm.tsx @@ -359,6 +359,20 @@ export const LocationEditForm: FC = ({ location, yearMont {(formValues.billFwdEnabled || formValues.rentDueNotificationEnabled) && (
{t("tenant-email-legend")} + + + @@ -414,7 +428,7 @@ export const LocationEditForm: FC = ({ location, yearMont )} ):( -
+
{t("email-status.new")}
@@ -427,19 +441,6 @@ export const LocationEditForm: FC = ({ location, yearMont

))}
- -
)}