-
Notifications
You must be signed in to change notification settings - Fork 590
Dashboard: Remove /routes #8084
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
Conversation
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
WalkthroughA non-permanent redirect from /routes to /tokens was added. The bridge routes feature under apps/dashboard/src/app/(app)/(dashboard)/(bridge)/… was removed, including page, layout, client/server components, utilities, and types. Tokens page gained an exported metadata object. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant U as User
participant N as Next.js Router
participant T as Tokens Page
U->>N: Request GET /routes
Note over N: Redirect rule matches<br/>(non-permanent)
N-->>U: 307 Redirect to /tokens
U->>N: Request GET /tokens
N->>T: Render page with metadata
T-->>U: Tokens HTML
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Pre-merge checks and finishing touches❌ Failed checks (2 warnings)
✅ Passed checks (1 passed)
✨ Finishing touches
🧪 Generate unit tests
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro Disabled knowledge base sources:
⛔ Files ignored due to path filters (1)
📒 Files selected for processing (13)
💤 Files with no reviewable changes (11)
🧰 Additional context used📓 Path-based instructions (5)**/*.{ts,tsx}📄 CodeRabbit inference engine (CLAUDE.md)
Files:
**/*.{ts,tsx,js,jsx}📄 CodeRabbit inference engine (CLAUDE.md)
Files:
apps/{dashboard,playground-web}/**/*.{ts,tsx}📄 CodeRabbit inference engine (CLAUDE.md)
Files:
apps/{dashboard,playground}/**/*.{ts,tsx}📄 CodeRabbit inference engine (AGENTS.md)
Files:
apps/{dashboard,playground}/**/*.tsx📄 CodeRabbit inference engine (AGENTS.md)
Files:
🧠 Learnings (5)📓 Common learnings
📚 Learning: 2025-07-18T19:19:55.613Z
Applied to files:
📚 Learning: 2025-05-26T16:28:50.772Z
Applied to files:
📚 Learning: 2025-07-18T19:20:32.530Z
Applied to files:
📚 Learning: 2025-05-30T18:14:57.074Z
Applied to files:
🔇 Additional comments (2)
Warning Review ran into problems🔥 ProblemsErrors were encountered while retrieving linked issues. Errors (1)
Comment |
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 Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8084 +/- ##
=======================================
Coverage 56.34% 56.34%
=======================================
Files 906 906
Lines 59182 59182
Branches 4176 4176
=======================================
Hits 33349 33349
Misses 25727 25727
Partials 106 106
🚀 New features to boost your workflow:
|
size-limit report 📦
|
Merge activity
|
<!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on the removal of several files related to the `bridge` feature in the dashboard and the addition of a new `tokens` page with metadata for improved SEO. ### Detailed summary - Deleted files related to the `bridge` feature: - `utils.ts` - `layout.tsx` - `route.ts` - `page.tsx` - `opengraph-image.png` - Various components under `routes/components/client` and `routes/components/server` - Added a new `tokens` page in `page.tsx` with: - Metadata for SEO, including title and description - Import of `PageHeader` and `TokenPage` components > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - New Features - Redirects: Visiting /routes now automatically navigates to /tokens (temporary redirect). - Tokens page now includes enriched metadata for improved previews and sharing. - Refactor - Removed the legacy Routes dashboard and associated UI controls, streamlining navigation to the Tokens experience. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
c502d26
to
dd69316
Compare
PR-Codex overview
This PR primarily focuses on the removal of several files within the
dashboard
section of the application and the addition of a newtokens
page with metadata.Detailed summary
utils.ts
layout.tsx
route.ts
page.tsx
(inroutes
)opengraph-image.png
routes/components/client
androutes/components/server
tokens/page.tsx
file with:Link
,PageHeader
, andTokenPage
componentsSummary by CodeRabbit
New Features
Refactor