Avoid cascaded fetches inside React effects
React effects should not serialize independent fetches that can run in parallel or move server-side.
#Metadata
#Why it matters
Waterfall-style fetches delay rendering and hide data-loading cost inside client effects.
#Remediation
Parallelize the requests, move data loading server-side, or cache the first response before issuing the next request.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/typescript/ts.react.no-cascaded-effect-fetches.rule.yaml.