From dd40515ccc8f3e1636194449a726aaf825f2ae2e Mon Sep 17 00:00:00 2001 From: baedboibidex-cmyk Date: Sat, 1 Aug 2026 00:16:07 +0100 Subject: [PATCH 1/2] fix: restore useNavigationTiming import in App --- src/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App.tsx b/src/App.tsx index b924600c..421867ac 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,6 +3,7 @@ import { useEffect } from 'react'; import { Toaster } from 'react-hot-toast'; import { createBrowserRouter, RouterProvider } from 'react-router'; import AppErrorBoundary from './components/common/AppErrorBoundary'; +import { useNavigationTiming } from './hooks/useNavigationTiming'; import { routes } from './routes'; import { useRouteChangeLogging } from './hooks/useRouteChangeLogging'; From 2b03646eb26860ef97fa21ba3d46b4bba7fa188c Mon Sep 17 00:00:00 2001 From: baedboibidex-cmyk Date: Sat, 1 Aug 2026 01:49:39 +0100 Subject: [PATCH 2/2] chore: align App.tsx with upstream dev (drop stale useNavigationTiming call) --- src/App.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 421867ac..a294013e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,14 +3,12 @@ import { useEffect } from 'react'; import { Toaster } from 'react-hot-toast'; import { createBrowserRouter, RouterProvider } from 'react-router'; import AppErrorBoundary from './components/common/AppErrorBoundary'; -import { useNavigationTiming } from './hooks/useNavigationTiming'; import { routes } from './routes'; import { useRouteChangeLogging } from './hooks/useRouteChangeLogging'; const router = createBrowserRouter(routes); function App() { - useNavigationTiming(); useRouteChangeLogging(); useEffect(() => {