Skip to content

Commit c1dacae

Browse files
authored
Merge branch 'cohort-2' into cohort-2
Signed-off-by: Pavel Fedotov <66903336+Pfed-prog@users.noreply.github.com>
2 parents d12f57a + c649545 commit c1dacae

File tree

3 files changed

+14
-18
lines changed

3 files changed

+14
-18
lines changed

src/components/dashboard/DeveloperEngagementDashboard.tsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import { CohortSelector } from './CohortSelector';
1818
import { CohortId, COHORT_DATA } from '@/types/cohort';
1919
import { useCohortData } from '@/hooks/useCohortData';
2020
import PartnerFeedbackMatrix from './PartnerFeedbackMatrix';
21-
//import { AlertsPanel } from './AlertsPanel';
2221

2322
export default function DeveloperEngagementDashboard() {
2423
const {
@@ -144,10 +143,6 @@ export default function DeveloperEngagementDashboard() {
144143
<ExecutiveSummary data={processedData} />
145144
</div>
146145

147-
{/* <div className="mb-6 bg-white rounded-lg shadow-md">
148-
<AlertsPanel />
149-
</div> */}
150-
151146
{/* Action Items Section */}
152147
<div className="mb-8">
153148
<ActionableInsights data={processedData} />

src/components/dashboard/views/ContributorView.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import {
2020
TableHeader,
2121
TableRow,
2222
} from '@/components/ui/table';
23+
2324
import {
2425
TooltipRoot,
2526
TooltipContent,

src/types/dashboard.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ export interface FeedbackEntry {
1717

1818
export interface EngagementData {
1919
Name: string;
20-
Cohort: CohortId; // New field
21-
'Github Username'?: string;
22-
'Program Week': string; // Now consistently formatted
23-
'Engagement Participation ': string; // Now without leading numbers
24-
'How many issues, PRs, or projects this week?': string; // Now "4+" becomes "4"
25-
'Which Tech Partner': string[] | string; // Always array
26-
'Tech Partner Collaboration?': string;
27-
'Issue Title 1'?: string | string[];
28-
'Issue Link 1'?: string | string[];
29-
'Issue Title 2'?: string | string[];
30-
'Issue Link 2'?: string | string[];
31-
'Issue Title 3'?: string | string[];
32-
'Issue Link 3'?: string | string[];
20+
Cohort?: CohortId; // New field
21+
"Github Username"?: string;
22+
"Program Week": string; // Now consistently formatted
23+
"Engagement Participation ": string; // Now without leading numbers
24+
"How many issues, PRs, or projects this week?": string; // Now "4+" becomes "4"
25+
"Which Tech Partner": string[] | string; // Always array
26+
"Tech Partner Collaboration?": string;
27+
"Issue Title 1"?: string | string[];
28+
"Issue Link 1"?: string | string[];
29+
"Issue Title 2"?: string | string[];
30+
"Issue Link 2"?: string | string[];
31+
"Issue Title 3"?: string | string[];
32+
"Issue Link 3"?: string | string[];
3333
[key: string]: string | string[] | undefined;
3434
}
3535

0 commit comments

Comments
 (0)