-
Notifications
You must be signed in to change notification settings - Fork 130
fix(fe): make changelog non blocking resource #3308
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(fe): make changelog non blocking resource #3308
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
3 Skipped Deployments
|
Code ReviewSummaryThis PR changes the Changelog component from using useSuspenseQuery to useQuery, making the changelog fetch non-blocking. This is a good improvement that prevents the changelog from blocking the app's initial render. ✅ Positive Aspects
🔍 Potential Issues
💡 Suggestions
🧪 Testing Considerations
🔒 SecurityNo security concerns identified. The component fetches from a hardcoded URL and doesn't handle user input directly. ⚡ PerformanceThe change improves performance by not blocking rendering on the changelog fetch. The query already has appropriate caching (1 hour stale time) configured in changelogQueryOptions() at frontend/src/queries/global.ts:41. VerdictApproved ✅ - This is a solid improvement that makes the changelog fetch non-blocking. The implementation is mostly sound, with only minor suggestions for improvement around error handling and loading states. |
Graphite Automations"Test" took an action on this PR • (11/03/25)1 assignee was added to this PR based on Kacper Wojciechowski's automation. |

Closes FRONT-873