Parent beforeLoad being called when a child search param changes
I don't remember if this was always the case, but given the following routes:
/blog/posts.tsx
/blog/posts/$id.tsx (search params:
If I update the search params using the following:
Should the
/blog/posts.tsx
/blog/posts/$id.tsx (search params:
showEditBanner: boolean)If I update the search params using the following:
Should the
beforeLoad function in posts.tsx get called? It seems to be right now, but I'd prefer for it not to for performance reasons.