From 0651c80e7d281d3d3c2a63b75a4cf696721e56c2 Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 12 Sep 2025 19:41:19 +0000 Subject: [PATCH] addressed issue #1259 --- src/routes/guides/routing-and-navigation.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/routes/guides/routing-and-navigation.mdx b/src/routes/guides/routing-and-navigation.mdx index 1772310ba..afaedc388 100644 --- a/src/routes/guides/routing-and-navigation.mdx +++ b/src/routes/guides/routing-and-navigation.mdx @@ -275,8 +275,7 @@ Instead of checking for the presence of a parameter, this allows for more comple ```jsx import { lazy } from "solid-js"; import { render } from "solid-js/web"; -import { Router, Route } from "@solidjs/router"; -import type { SegmentValidators } from "./types"; +import { Router, Route, type MatchFilters } from "@solidjs/router"; const User = lazy(() => import("./pages/User"));