From 6f2ac3e22b9f0b51ba9fb414d4bac5d9afe41c67 Mon Sep 17 00:00:00 2001 From: Eric Gullickson <16152721+ericgullickson@users.noreply.github.com> Date: Sun, 11 Jan 2026 11:32:12 -0600 Subject: [PATCH] fix: Add Audit Logs navigation to Admin Console settings (refs #10) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The routes and screen components for AdminLogsPage were implemented but the navigation links to access them were missing from both desktop and mobile Settings pages. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../settings/mobile/MobileSettingsScreen.tsx | 8 +++++++ frontend/src/pages/SettingsPage.tsx | 24 +++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/frontend/src/features/settings/mobile/MobileSettingsScreen.tsx b/frontend/src/features/settings/mobile/MobileSettingsScreen.tsx index e3083c5..7a02751 100644 --- a/frontend/src/features/settings/mobile/MobileSettingsScreen.tsx +++ b/frontend/src/features/settings/mobile/MobileSettingsScreen.tsx @@ -509,6 +509,14 @@ export const MobileSettingsScreen: React.FC = () => {
Backup & Restore
Create backups and restore data
+ diff --git a/frontend/src/pages/SettingsPage.tsx b/frontend/src/pages/SettingsPage.tsx index a36f8b3..716925c 100644 --- a/frontend/src/pages/SettingsPage.tsx +++ b/frontend/src/pages/SettingsPage.tsx @@ -572,6 +572,30 @@ export const SettingsPage: React.FC = () => { + + + + + navigate('/garage/settings/admin/logs')} + sx={{ + backgroundColor: 'primary.main', + color: 'primary.contrastText', + '&:hover': { + backgroundColor: 'primary.dark' + } + }} + > + View + + + )}