# Chore: Remove Insights Count from Details Tab ## Chore Description In the source detail page under the frontend app, there are 3 tabs for source information: Content, Insights, and Details. The Details tab currently displays an "Insights" count in its Statistics section, which is redundant since the Insights tab already shows the count in its tab trigger (e.g., "Insights (1)"). This chore removes the redundant insights count display from the Details tab to avoid duplication and improve UI clarity. ## Relevant Files Use these files to resolve the chore: - **`frontend/src/components/source/SourceDetailContent.tsx`** (lines 710-716) - This is the main component that renders the source detail page with tabs - Contains the Details tab with the Statistics section showing the redundant insights count - Need to remove the insights count row from the Statistics section while keeping the "Embedded" status ## Step by Step Tasks IMPORTANT: Execute every step in order, top to bottom. ### Step 1: Remove Insights Count from Statistics Section - Open `frontend/src/components/source/SourceDetailContent.tsx` - Locate the Statistics section in the Details tab (lines 697-718) - Remove the insights count display (lines 710-716) which shows: ```tsx