Which project does this relate to?
Router
Describe the bug
i'm using tanstack and have the following
probably related to _layout.$.tsx, maybe i didnt read something right?
my discord if anyone need any more info granty._.
...
export const Route = createFileRoute("/")({
loader: async ({ location }) => {
const search = new URLSearchParams(location?.search ?? "")
const brandIdParam = search.get("brandId")
const brandId = brandIdParam ? Number(brandIdParam) : undefined
const [
{ data: departmentsRes },
{ data: bannersRes },
{ data: brandsRes },
modelsRes,
{ data: highlightedRes },
{ data: businessRes },
] = await Promise.all([
executeFromServerTyped(getAllDepartments, {}),
executeFromServerTyped(getHomepageBanners, {}),
executeFromServerTyped(getVehicleBrands, { isActive: true, limit: 100 }),
brandId
? executeFromServerTyped(getVehicleModelsByBrand, { brandId, isActive: true })
: Promise.resolve({ data: undefined as any }),
executeFromServerTyped(getHighlightedCloudSearchProducts, { limit: 12 }),
executeFromServerTyped(getBusinessInfo, {}),
]);
const departments = departmentsRes?.departments ?? []
const banners = bannersRes?.homepageBanners ?? []
const brands = brandsRes?.vehicleBrands ?? []
const models = modelsRes?.data?.vehicleModelsByBrand ?? []
const business = businessRes?.businessInfo ?? null;
const highlightedOffers: CloudSearchOffer[] =
(highlightedRes?.highlightedCloudSearchProducts as CloudSearchOffer[]) ?? []
return { departments, banners, brands, models, brandId, highlightedOffers, business };
},
component: RouteComponent,
})
function RouteComponent() {
return (
<>
<Header />
</>
)
}
export default Route
where the Header component has this inside it:
export function Header() {
const { departments, business } = useLoaderData({ from: "/" })
when header is rendered in the Index page it works just fine, however if it inside the _layout and replicated into other pages this happens:
invariant failed: could not find an active match from "/"
and crashes the app
the fix was to do:
const { departments, business } = useLoaderData({ from: "" as "/" })
and it work for all routes now, not only
Your Example Website or App
https://stackblitz.com/edit/github-m2nhtzcu?file=src%2Froutes%2F__root.tsx
Steps to Reproduce the Bug or Issue
1 - go stackblitz page
2 - click at test anchor/link
3 - error should appear
Expected behavior
no invariant failed error
Screenshots or Videos
No response
Platform
Additional context
No response
Which project does this relate to?
Router
Describe the bug
i'm using tanstack and have the following
probably related to _layout.$.tsx, maybe i didnt read something right?
my discord if anyone need any more info
granty._.where the Header component has this inside it:
when header is rendered in the Index page it works just fine, however if it inside the _layout and replicated into other pages this happens:
invariant failed: could not find an active match from "/"
and crashes the app
the fix was to do:
const { departments, business } = useLoaderData({ from: "" as "/" })
and it work for all routes now, not only
Your Example Website or App
https://stackblitz.com/edit/github-m2nhtzcu?file=src%2Froutes%2F__root.tsx
Steps to Reproduce the Bug or Issue
1 - go stackblitz page
2 - click at test anchor/link
3 - error should appear
Expected behavior
no invariant failed error
Screenshots or Videos
No response
Platform
Router / Start Version:
"@tanstack/react-router": "1.132.31",
"@tanstack/react-start": "1.132.31",
OS: Linux
Browser: Chrome
Browser Version: latest
Bundler: vite
Bundler Version: latest
Additional context
No response