From d45367ea841b95d977be19673786e5528aba21c1 Mon Sep 17 00:00:00 2001 From: Samuel Jensen <44519206+nichtsam@users.noreply.github.com> Date: Mon, 3 Feb 2025 18:49:01 +0100 Subject: [PATCH] add missing location type import --- contributors.yml | 1 + packages/react-router/lib/types/route-module.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/contributors.yml b/contributors.yml index d6bb33186f..6e3188b1a2 100644 --- a/contributors.yml +++ b/contributors.yml @@ -224,6 +224,7 @@ - mtendekuyokwa19 - mtliendo - ned-park +- nichtsam - nikeee - nilubisan - Nismit diff --git a/packages/react-router/lib/types/route-module.ts b/packages/react-router/lib/types/route-module.ts index 39e59e422c..915a9f16d3 100644 --- a/packages/react-router/lib/types/route-module.ts +++ b/packages/react-router/lib/types/route-module.ts @@ -1,4 +1,5 @@ import type { MetaDescriptor } from "../dom/ssr/routeModules"; +import type { Location } from "../router/history"; import type { LinkDescriptor } from "../router/links"; import type { AppLoadContext } from "../server-runtime/data";