{/* Contributions count */}
-
+
}>
-
+
}>
-
+
diff --git a/apps/web/src/components/interviews/dashboard/progress/InterviewsDashboardProgressSection.tsx b/apps/web/src/components/interviews/dashboard/progress/InterviewsDashboardProgressSection.tsx
index 88b2304c2..23ef1d700 100644
--- a/apps/web/src/components/interviews/dashboard/progress/InterviewsDashboardProgressSection.tsx
+++ b/apps/web/src/components/interviews/dashboard/progress/InterviewsDashboardProgressSection.tsx
@@ -12,6 +12,7 @@ import InterviewsDashboardSolvedProblemsCard from './InterviewsDashboardSolvedPr
type Props = Readonly<{
contributions?: Record
;
+ isContributionsLoading: boolean;
questions: {
codingQuestions: ReadonlyArray;
quizQuestions: ReadonlyArray;
@@ -26,6 +27,7 @@ export default function InterviewsDashboardProgressSection({
questionsProgress,
questions,
contributions,
+ isContributionsLoading,
}: Props) {
return (
@@ -48,6 +50,7 @@ export default function InterviewsDashboardProgressSection({
);