From 7b05fc1f6dd05b5bcf8672ee079d1cbc0b5e3ba0 Mon Sep 17 00:00:00 2001 From: Alejandra <90076947+alejsdev@users.noreply.github.com> Date: Tue, 18 Feb 2025 15:02:50 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Remove=20unused=20context=20from?= =?UTF-8?q?=20router=20creation=20(#1498)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/main.tsx b/frontend/src/main.tsx index f9baca9..72be295 100644 --- a/frontend/src/main.tsx +++ b/frontend/src/main.tsx @@ -15,7 +15,7 @@ OpenAPI.TOKEN = async () => { const queryClient = new QueryClient() -const router = createRouter({ routeTree, context: { queryClient } }) +const router = createRouter({ routeTree }) declare module "@tanstack/react-router" { interface Register { router: typeof router