feature/IO-3255-simplified-parts-management - Cleanup

This commit is contained in:
Dave
2025-08-14 22:50:59 -04:00
parent 9dd34c9f6c
commit b09b8b4f34
2 changed files with 5 additions and 5 deletions

View File

@@ -68,9 +68,9 @@ export function App({
useEffect(() => {
const pathname = window.location.pathname;
const isParts = pathname === "/parts" || pathname.startsWith("/parts/") || bodyshop?.external_shop_id;
const isParts = pathname === "/parts" || pathname.startsWith("/parts/");
setIsPartsEntry(isParts);
}, [setIsPartsEntry, bodyshop?.external_shop_id]);
}, [setIsPartsEntry]);
//const b = Grid.useBreakpoint();
// console.log("Breakpoints:", b);