Conversation
- Rename src/app/chat/ directory to src/app/app/ - Update all route references from /chat to /app - Update all import paths from @/app/chat/ to @/app/app/ - Add backwards compatibility redirects in next.config.js Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Contributor
|
Too many files changed for review. ( |
/chat route to /app
nmgarza5
approved these changes
Jan 23, 2026
web/src/app/app/message/messageComponents/AIMessage.copy.test.tsx
Outdated
Show resolved
Hide resolved
Update all e2e test files to use the new /app route instead of /chat. This follows the route rename in commit b796c91. Changes: - Updated page.goto("/chat") to page.goto("/app") - Updated waitForURL patterns for /app routes - Updated URL assertions and includes() checks - Preserved /api/chat/* API endpoint references (unchanged) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
/web/src/app/chatdirectory to/web/src/app/app/chatto/app@/app/chatto@/app/appnext.config.jsHow Has This Been Tested?
Application still works after light QA. More to be done.
Additional Options
Summary by cubic
Renamed the primary app route from /chat to /app and migrated the codebase to the new path. Added permanent redirects so existing /chat links continue to work.
Refactors
Migration
Written for commit f89baa4. Summary will update on new commits.