diff --git a/ops/diagnostics/dashboard_epistemic.py b/ops/diagnostics/dashboard_epistemic.py
index cb3dd5ef7..6074f4243 100644
--- a/ops/diagnostics/dashboard_epistemic.py
+++ b/ops/diagnostics/dashboard_epistemic.py
@@ -194,12 +194,6 @@ fetch('/api/review-summary?days=30')
reasonRows += '
' + esc(r.reason) + ' | ' + r.count + ' |
';
}}
- // Disagreement types
- let disagreeRows = '';
- for (const d of (data.disagreement_types || [])) {{
- disagreeRows += '| ' + esc(d.type) + ' | ' + d.count + ' |
';
- }}
-
el.innerHTML = `
Total Reviews
${{data.total}}
@@ -215,13 +209,6 @@ fetch('/api/review-summary?days=30')
${{reasonRows || '
| No rejections |
'}}
-
-
Disagreement Types
-
- | Type | Count |
- ${{disagreeRows || '| No disagreements |
'}}
-
-
`;
}}).catch(() => {{
document.getElementById('review-container').innerHTML =