Skip to content

fix(dashboard): hide unsupported tabs#4248

Closed
jog1t wants to merge 1 commit intomainfrom
02-20-fix_dashboard_hide_unsupported_tabs
Closed

fix(dashboard): hide unsupported tabs#4248
jog1t wants to merge 1 commit intomainfrom
02-20-fix_dashboard_hide_unsupported_tabs

Conversation

@jog1t
Copy link
Contributor

@jog1t jog1t commented Feb 20, 2026

Description

This change removes several tabs from the actor details interface, including Queue, Traces, Workflow, and Database tabs. The corresponding tab triggers and content sections have been removed from the UI. Additionally, the import for ActorWorkflowTab has been moved to maintain proper import organization.

Type of change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

How Has This Been Tested?

Please describe the tests that you ran to verify your changes.

Checklist:

  • My code follows the style guidelines of this project
  • I have performed a self-review of my code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes

@railway-app railway-app bot temporarily deployed to rivet-frontend / rivet-pr-4248 February 20, 2026 22:29 Destroyed
@railway-app
Copy link

railway-app bot commented Feb 20, 2026

🚅 Deployed to the rivet-pr-4248 environment in rivet-frontend

Service Status Web Updated (UTC)
frontend-inspector ❌ Build Failed (View Logs) Web Feb 20, 2026 at 10:31 pm
website ❌ Build Failed (View Logs) Web Feb 20, 2026 at 10:31 pm
mcp-hub ✅ Success (View Logs) Web Feb 20, 2026 at 10:30 pm
ladle ❌ Build Failed (View Logs) Web Feb 20, 2026 at 10:30 pm
frontend-cloud 🕒 Building (View Logs) Web Feb 20, 2026 at 10:30 pm

@jog1t jog1t marked this pull request as ready for review February 20, 2026 22:30
Copy link
Contributor Author

jog1t commented Feb 20, 2026


How to use the Graphite Merge Queue

Add the label merge-queue to this PR to add it to 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.

@graphite-app
Copy link
Contributor

graphite-app bot commented Feb 20, 2026

Merge activity

  • Feb 20, 10:30 PM UTC: jog1t added this pull request to the Graphite merge queue.
  • Feb 20, 10:30 PM UTC: CI is running for this pull request on a draft pull request (#4250) due to your merge queue CI optimization settings.
  • Feb 20, 10:31 PM UTC: Merged by the Graphite merge queue via draft PR: #4250.

@graphite-app
Copy link
Contributor

graphite-app bot commented Feb 20, 2026

Graphite Automations

"Test" took an action on this PR • (02/20/26)

1 assignee was added to this PR based on Kacper Wojciechowski's automation.

graphite-app bot pushed a commit that referenced this pull request Feb 20, 2026
# Description

This change removes several tabs from the actor details interface, including Queue, Traces, Workflow, and Database tabs. The corresponding tab triggers and content sections have been removed from the UI. Additionally, the import for `ActorWorkflowTab` has been moved to maintain proper import organization.

## Type of change

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [x] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] This change requires a documentation update

## How Has This Been Tested?

Please describe the tests that you ran to verify your changes.

## Checklist:

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally with my changes
@graphite-app graphite-app bot closed this Feb 20, 2026
@graphite-app graphite-app bot deleted the 02-20-fix_dashboard_hide_unsupported_tabs branch February 20, 2026 22:31
@claude
Copy link

claude bot commented Feb 20, 2026

PR Review: fix(dashboard): hide unsupported tabs

Summary

This PR removes Queue, Traces, Workflow, and Database tabs from the actor details UI. The change is straightforward, but there are a few issues to address.


Issues

Unused Imports (Bug)

After removing the tab content components, several imports remain in the file that are now dead code. This will likely produce TypeScript/ESLint warnings or errors:

// These are imported but no longer used after this PR:
import { ActorDatabaseTab } from "./actor-db-tab";
import { ActorQueueTab } from "./actor-queue-tab";
import { ActorTracesTab } from "./actor-traces-tab";
import { ActorWorkflowTab } from "./workflow/actor-workflow-tab"; // moved but still unused

The PR description says the ActorWorkflowTab import was "moved to maintain proper import organization," but since the workflow tab content was also removed, the import serves no purpose. All four of these should be removed.

Permanently Deleted vs. Commented-Out Code

Two tabs (Logs, Metrics) were previously commented out—presumably with intent to restore them later. This PR deletes those comments entirely alongside the active tabs. If there's any chance Queue, Traces, Workflow, or Database will be re-enabled, the same approach (commenting out) would be more consistent. If these are being permanently removed, that's fine—but worth confirming intent.


Minor Notes

  • The PR checklist is entirely unchecked. Even if tests aren't applicable here (pure UI deletion), a self-review confirmation and a note on how this was manually verified would be helpful.
  • The PR is marked as a breaking change, which is appropriate since users who rely on these tabs for actor debugging will lose that functionality. It's worth noting in the description what the plan is for this functionality (permanently removed? moved elsewhere? future work?).

Verdict

The core change is correct, but the unused imports should be cleaned up before merging. Everything else is minor.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant