Skip to content

Commit

Permalink
fix: do not import from '.' (#2191)
Browse files Browse the repository at this point in the history
required for #2190
  • Loading branch information
schiller-manuel authored Aug 27, 2024
1 parent 4fa7ad8 commit cba21e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-router/src/link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
useIntersectionObserver,
} from './utils'
import { exactPathTest, removeTrailingSlash } from './path'
import type { AnyRouter, ParsedLocation } from '.'
import type { ParsedLocation } from './location'
import type { HistoryState } from '@tanstack/history'
import type {
AllParams,
Expand All @@ -26,7 +26,7 @@ import type {
RouteToPath,
TrailingSlashOptionByRouter,
} from './routeInfo'
import type { RegisteredRouter } from './router'
import type { AnyRouter, RegisteredRouter } from './router'
import type {
Expand,
MakeDifferenceOptional,
Expand Down

0 comments on commit cba21e3

Please sign in to comment.