You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In router-head.tsx on line 17;
Instead of href={loc.href}, we should have href={loc.url.href} since RouteLocation is defined as:
export interface RouteLocation {
/**
* Route params extracted from the URL.
*/
readonly params: Record<string, string>;
/**
* The current URL.
*/
readonly url: URL;
/**
* True if the app is currently navigating.
*/
readonly isNavigating: boolean;
}
The text was updated successfully, but these errors were encountered:
In
router-head.tsx
on line 17;Instead of
href={loc.href}
, we should havehref={loc.url.href}
sinceRouteLocation
is defined as:The text was updated successfully, but these errors were encountered: