Skip to content

Commit cba21e3

Browse files
fix: do not import from '.' (#2191)
required for #2190
1 parent 4fa7ad8 commit cba21e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react-router/src/link.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
useIntersectionObserver,
1212
} from './utils'
1313
import { exactPathTest, removeTrailingSlash } from './path'
14-
import type { AnyRouter, ParsedLocation } from '.'
14+
import type { ParsedLocation } from './location'
1515
import type { HistoryState } from '@tanstack/history'
1616
import type {
1717
AllParams,
@@ -26,7 +26,7 @@ import type {
2626
RouteToPath,
2727
TrailingSlashOptionByRouter,
2828
} from './routeInfo'
29-
import type { RegisteredRouter } from './router'
29+
import type { AnyRouter, RegisteredRouter } from './router'
3030
import type {
3131
Expand,
3232
MakeDifferenceOptional,

0 commit comments

Comments
 (0)