-
Notifications
You must be signed in to change notification settings - Fork 537
Open
Labels
prefetchingRelated to the prefetching featureRelated to the prefetching featurereactRelated to the react adapterRelated to the react adapter
Description
Version:
@inertiajs/reactversion: 2.0.0-beta.2
Describe the problem:
When I prefetch a <Link prefetch/> it only loads props that don't have the Inertia::defer method.
Steps to reproduce:
Controller:
return inertia('Dashboard/Products/Inventory', [ 'shop' => $shop, 'inventory' => Inertia::defer(fn() => $shop->inventory), ]);
Frontened:
<Link prefetch href={route("inventory")} className="flex gap-2 items-center"> <span className="font-medium text-white">Inventory</span> </Link>
Metadata
Metadata
Assignees
Labels
prefetchingRelated to the prefetching featureRelated to the prefetching featurereactRelated to the react adapterRelated to the react adapter