docs(svelte): replace deprecated isLoading with isPending in overview#11003
docs(svelte): replace deprecated isLoading with isPending in overview#11003poetryofcode wants to merge 2 commits into
Conversation
`isLoading` is a deprecated alias for `isPending && isFetching` and is scheduled for removal in the next major version. The overview example shows a standard (always-enabled) query, so `isPending` is the correct flag. All other framework overview docs (React, Vue, Angular, Lit, Preact) already use `isPending`. Note: `isLoading` is intentionally retained in disabling-queries guides where it is the right flag for disabled/lazy queries. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughA single-line change in the Svelte overview documentation updates the example's conditional rendering check from ChangesSvelte Docs Fix
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~1 minute Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
View your CI Pipeline Execution ↗ for commit f921df6
☁️ Nx Cloud last updated this comment at |
|
This change was already applied in #10990, so this PR is now redundant and I'll close it. One clarification for the record: |
Summary
The Svelte overview example used
query.isLoadingwhich is a deprecated alias in TanStack Query v5. The correct property isquery.isPending.isPendingisLoadingwas deprecated in v5 and is now just an alias forisPending && isFetchingChanges
docs/framework/svelte/overview.md: Changed{#if query.isLoading}→{#if query.isPending}Test plan
isPendingmatches the API reference docsSummary by CodeRabbit