From 64aae6adf7a2ae50cf60efbaa5dadd2ce96bf680 Mon Sep 17 00:00:00 2001 From: dlawler489 <104159223@student.swin.edu.au> Date: Sat, 13 Jun 2026 08:14:49 +1000 Subject: [PATCH] Add Settings link to the navigation bar The /settings route existed but had no nav entry, leaving the Etsy integration and data management UI unreachable by clicking. Co-Authored-By: Claude Fable 5 --- client/src/components/Layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/components/Layout.tsx b/client/src/components/Layout.tsx index 621f4d2..86e7833 100644 --- a/client/src/components/Layout.tsx +++ b/client/src/components/Layout.tsx @@ -71,6 +71,7 @@ const Layout: React.FC = () => { {navLink('/orders', 'Orders')} {navLink('/expenses', 'Expenses')} {navLink('/data-import', 'Data Import')} + {navLink('/settings', 'Settings')}