From 4f368abd3fa9c567ac577b2cf31133c74f009377 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 24 Jul 2026 20:42:11 +0000 Subject: [PATCH] ref(dashboards): Remove dashboards-ai-generate-edit flag check The organizations:dashboards-ai-generate-edit flag was fully rolled out to GA, so the edit-mode Seer chat panel now renders unconditionally. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01JQtVPKdj6SugtGgkJNSLhk --- static/app/views/dashboards/detail.tsx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/static/app/views/dashboards/detail.tsx b/static/app/views/dashboards/detail.tsx index 958206c6f0ab..743a4d5c0aee 100644 --- a/static/app/views/dashboards/detail.tsx +++ b/static/app/views/dashboards/detail.tsx @@ -1444,15 +1444,12 @@ class DashboardDetail extends Component { dashboard={modifiedDashboard ?? dashboard} onSave={this.handleSaveWidget} /> - {dashboardState === DashboardState.EDIT && - organization.features.includes( - 'dashboards-ai-generate-edit' - ) && ( - - )} + {dashboardState === DashboardState.EDIT && ( + + )} )}