diff --git a/frontend/src/components/Layout.tsx b/frontend/src/components/Layout.tsx
index dfe5d04..518ca39 100644
--- a/frontend/src/components/Layout.tsx
+++ b/frontend/src/components/Layout.tsx
@@ -45,10 +45,7 @@ export default function Layout() {
{ path: '/manage-users', label: 'Users', icon: '👥', featureKey: 'manage_users' },
]
- const footerNavItems: NavItem[] = [
- { path: '/settings', label: 'Settings', icon: '⚙️' },
- { path: '/help', label: 'Help', icon: '📚' },
- ]
+ const footerNavItems: NavItem[] = [{ path: '/help', label: 'Help', icon: '📚' }]
const filterNavItems = (items: NavItem[]) =>
items.filter((item) => !item.featureKey || hasPermission(item.featureKey))
diff --git a/frontend/src/pages/AutoMatch.tsx b/frontend/src/pages/AutoMatch.tsx
index a071964..c137198 100644
--- a/frontend/src/pages/AutoMatch.tsx
+++ b/frontend/src/pages/AutoMatch.tsx
@@ -623,9 +623,11 @@ export default function AutoMatch() {
<>
-
- Person {currentIndex + 1}
-
+ {isDeveloperMode && (
+
+ Person {currentIndex + 1}
+
+ )}
- Person {currentIndex + 1}
- {currentPerson && ` • ${currentPerson.total_matches} matches`}
+ {isDeveloperMode && `Person ${currentIndex + 1} `}
+ {currentPerson && `• ${currentPerson.total_matches} matches`}
>
diff --git a/frontend/src/pages/Identify.tsx b/frontend/src/pages/Identify.tsx
index 653f2a2..6e5a546 100644
--- a/frontend/src/pages/Identify.tsx
+++ b/frontend/src/pages/Identify.tsx
@@ -953,7 +953,7 @@ export default function Identify() {
setDob(e.target.value)
setPersonId(undefined) // Clear person selection when typing
}}
- className="mt-1 block w-full border rounded px-2 py-1"
+ className="mt-1 block border rounded px-2 py-1 w-full max-w-[220px]"
readOnly={!!personId}
disabled={!!personId} />