From ca1cf143d31635322a1e92cd24efcdab2e5d6119 Mon Sep 17 00:00:00 2001 From: Tyler Date: Wed, 1 Jul 2026 18:52:26 -0600 Subject: [PATCH] fix(water-admin): rebrand subtitle to "Tuxedo Field Operations" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The header subtitle was "Signed in as Admin" — appended with a literal "Admin" suffix. Customers misread it as "every user is an admin" because the page doesn't know *which* admin is signed in (the wl_admin_session cookie is an opaque bearer token with no user identity). Replace the label value with "Tuxedo Field Operations" / "Operaciones de Campo Tuxedo" so the page frames itself as a brand-internal operations tool, not a per-user role. Also drops the trailing " Admin" suffix from the rendered string. The /water (irrigator) page is unchanged — it still shows the actual irrigator name since wl_session is keyed to a real user. --- src/components/water/WaterAdminClient.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/water/WaterAdminClient.tsx b/src/components/water/WaterAdminClient.tsx index 0098959..2bc0601 100644 --- a/src/components/water/WaterAdminClient.tsx +++ b/src/components/water/WaterAdminClient.tsx @@ -30,7 +30,7 @@ type Props = { const LABELS = { en: { title: "Water Log Admin", - loggedInAs: "Signed in as", + loggedInAs: "Tuxedo Field Operations", logout: "Sign out", recentEntries: "Recent Entries", noEntries: "No entries yet", @@ -89,7 +89,7 @@ const LABELS = { }, es: { title: "Administración del Registro de Agua", - loggedInAs: "Conectado como", + loggedInAs: "Operaciones de Campo Tuxedo", logout: "Salir", recentEntries: "Entradas recientes", noEntries: "Sin entradas aún", @@ -1296,7 +1296,7 @@ export default function WaterAdminClient({