Skip to content

Commit cdd76c4

Browse files
committed
feat: update contribution breakdown to include work items alongside issues
1 parent c745deb commit cdd76c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/home/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,9 +510,9 @@ export default function HomePage() {
510510
</div>
511511
<div className="text-center">
512512
<div className="text-2xl font-bold text-primary">
513-
{apiData.breakdown.issues || 0}
513+
{(apiData.breakdown.issues || 0) + (apiData.breakdown.workitems || 0)}
514514
</div>
515-
<div className="text-sm text-muted-foreground">Issues</div>
515+
<div className="text-sm text-muted-foreground">Work Items/Issues</div>
516516
</div>
517517
</>
518518
)}

0 commit comments

Comments
 (0)