-
Notifications
You must be signed in to change notification settings - Fork 559
[Dashboard] Move RPC Edge to scale category and remove redirect #7495
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
[Dashboard] Move RPC Edge to scale category and remove redirect #7495
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
WalkthroughThe changes reorganize and annotate the export list in Changes
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
💤 Files with no reviewable changes (1)
🚧 Files skipped from review as they are similar to previous changes (1)
⏰ Context from checks skipped due to timeout of 90000ms (8)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7495 +/- ##
=======================================
Coverage 51.92% 51.92%
=======================================
Files 949 949
Lines 64148 64148
Branches 4229 4229
=======================================
Hits 33311 33311
Misses 30731 30731
Partials 106 106
🚀 New features to boost your workflow:
|
size-limit report 📦
|
Merge activity
|
### TL;DR Reorganized navigation structure by adding a "scale category" and removing the RPC Edge redirect. ### What changed? - Created a new "scale category" in the framer-rewrites.js file that includes: - `/rpc-edge` - `/insight` - `/storage` - Moved `/storage` from its own category into the new "scale category" - Moved `/insight` from its own category into the new "scale category" - Removed the redirect from `/rpc-edge` to the portal URL in redirects.js ### How to test? 1. Verify that the `/rpc-edge`, `/insight`, and `/storage` routes are properly grouped under the "scale category" 2. Confirm that navigating to `/rpc-edge` no longer redirects to the portal URL 3. Check that the other redirects still function as expected ### Why make this change? This change improves the organization of related services under a logical "scale category" grouping, making the navigation structure more intuitive. It also enables direct access to the RPC Edge page rather than redirecting users to the portal, providing a more seamless user experience. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Refactor** * Reorganized and regrouped certain dashboard paths under a new "scale category" for improved clarity. * **Chores** * Removed a redirect rule for the /rpc-edge path. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
8fc1548
to
02f6f87
Compare
|
TL;DR
Reorganized navigation structure by adding a "scale category" and removing the RPC Edge redirect.
What changed?
/rpc-edge
/insight
/storage
/storage
from its own category into the new "scale category"/insight
from its own category into the new "scale category"/rpc-edge
to the portal URL in redirects.jsHow to test?
/rpc-edge
,/insight
, and/storage
routes are properly grouped under the "scale category"/rpc-edge
no longer redirects to the portal URLWhy make this change?
This change improves the organization of related services under a logical "scale category" grouping, making the navigation structure more intuitive. It also enables direct access to the RPC Edge page rather than redirecting users to the portal, providing a more seamless user experience.
Summary by CodeRabbit
Refactor
Chores
PR-Codex overview
This PR focuses on updating the
framer-rewrites.js
andredirects.js
files in thedashboard
application. It modifies comments and adjusts the routing structure related to the handling of certain paths.Detailed summary
In
framer-rewrites.js
:// -- storage
to// -- scale category
.// -- end scale category
.// --insight
and the corresponding"/insight"
line.In
redirects.js
:"/rpc-edge"
to the portal.