From 4859999340b930cba073ae481527210e79dba02e Mon Sep 17 00:00:00 2001 From: tester Date: Sat, 21 Feb 2026 18:53:13 +0000 Subject: [PATCH] fix: merge App.tsx routes - add /craftsmen/:id for CraftsmanProfile Co-Authored-By: Claude Sonnet 4.6 --- client/src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/App.tsx b/client/src/App.tsx index 582fed4..638367b 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -7,6 +7,7 @@ import { Register } from '@/pages/Register' import { Products } from '@/pages/Products' import { ProductDetail } from '@/pages/ProductDetail' import { CraftsmenList } from '@/pages/CraftsmenList' +import { CraftsmanProfile } from '@/pages/CraftsmanProfile' import { useAuthStore } from '@/store/auth' function App() { @@ -26,6 +27,7 @@ function App() { } /> } /> } /> + } /> } />