feat(dashboard): remove repositories feature from dashboard UI#8893
Open
christianalfoni wants to merge 1 commit into
Open
feat(dashboard): remove repositories feature from dashboard UI#8893christianalfoni wants to merge 1 commit into
christianalfoni wants to merge 1 commit into
Conversation
The repositories product is being retired. Make it inaccessible from the dashboard without removing the underlying code: - Remove the topbar "Import" button and the empty-recents "Import repository" button - Hide the "Repositories" sidebar section (all-repositories list, expandable repos, and "My contributions") via showRespositories=false - Remove the "Create a new branch" carousels from the Recent page - Exclude repository branches from "Pick up where you left off" so it only shows sandboxes/devboxes - Show a removal banner on the Recent page for any workspace that still has at least one imported repository The repositories route, import modal, and related components are left in place but are no longer linked from the dashboard. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
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.
Summary
The repositories product is being retired. This PR makes it inaccessible from the dashboard UI without removing the underlying code (the
/dashboard/repositoriesroute, import modal, and related components remain in place, just unlinked).Changes
Header) and the empty-recents "Import repository" button (EmptyCTAs).showRespositories = falsehides the "Repositories" section header, the all-repositories/expandable list, and "My contributions".CreateBranchesRowcarousels.recentItemsis now built fromRECENT_SANDBOXESonly, so the grid shows only sandboxes/devboxes.RepositoriesRemovedStripeshown at the top of the Recent page, gated on the workspace still having at least one imported repository (sidebar[activeTeam].repositories.length > 0).Notes
getSidebarDatastill populates the repositories list independently of the sidebar UI, so banner detection continues to work.🤖 Generated with Claude Code