@@ -352,7 +352,7 @@ export default function Home() {
icon={FaNewspaper}
title={
}
className="overflow-hidden"
diff --git a/frontend/src/components/AnchorTitle.tsx b/frontend/src/components/AnchorTitle.tsx
index a03cd5f6a4..03aa8122ec 100644
--- a/frontend/src/components/AnchorTitle.tsx
+++ b/frontend/src/components/AnchorTitle.tsx
@@ -4,7 +4,6 @@ import { scrollToAnchor, scrollToAnchorWithHistory } from 'utils/scrollToAnchor'
import slugify from 'utils/slugify'
interface AnchorTitleProps {
- className?: string
title: string
}
diff --git a/frontend/src/components/CardDetailsPage.tsx b/frontend/src/components/CardDetailsPage.tsx
index 80de0ad10f..4ecd666e49 100644
--- a/frontend/src/components/CardDetailsPage.tsx
+++ b/frontend/src/components/CardDetailsPage.tsx
@@ -337,7 +337,7 @@ const DetailsCard = ({
contributors={topContributors}
icon={HiUserGroup}
maxInitialDisplay={12}
- label="Top Contributors"
+ title="Top Contributors"
getUrl={getMemberUrl}
/>
)}
@@ -346,7 +346,7 @@ const DetailsCard = ({
icon={HiUserGroup}
contributors={admins}
maxInitialDisplay={6}
- label="Admins"
+ title="Admins"
getUrl={getMemberUrl}
/>
)}
@@ -355,7 +355,7 @@ const DetailsCard = ({
icon={HiUserGroup}
contributors={mentors}
maxInitialDisplay={6}
- label="Mentors"
+ title="Mentors"
getUrl={getMemberUrl}
/>
)}
@@ -364,7 +364,7 @@ const DetailsCard = ({
icon={HiUserGroup}
contributors={mentees}
maxInitialDisplay={6}
- label="Mentees"
+ title="Mentees"
getUrl={(login) => getMenteeUrl(programKey || '', entityKey || '', login)}
/>
)}
diff --git a/frontend/src/components/ContributorsList.tsx b/frontend/src/components/ContributorsList.tsx
index ac2d9fa56e..ece26973b6 100644
--- a/frontend/src/components/ContributorsList.tsx
+++ b/frontend/src/components/ContributorsList.tsx
@@ -10,7 +10,7 @@ import ShowMoreButton from 'components/ShowMoreButton'
interface ContributorsListProps {
contributors: Contributor[]
- label?: string
+ title?: string
maxInitialDisplay?: number
icon?: IconType
getUrl: (login: string) => string
@@ -18,7 +18,7 @@ interface ContributorsListProps {
const ContributorsList = ({
contributors,
- label = 'Contributors',
+ title: label = 'Contributors',
maxInitialDisplay = 12,
icon,
getUrl,
@@ -40,7 +40,7 @@ const ContributorsList = ({
icon={icon}
title={
}
>
diff --git a/frontend/src/components/Milestones.tsx b/frontend/src/components/Milestones.tsx
index 24ba9feecc..5f68e82c6b 100644
--- a/frontend/src/components/Milestones.tsx
+++ b/frontend/src/components/Milestones.tsx
@@ -30,7 +30,7 @@ const Milestones: React.FC
= ({
-
+
}
data={data}
diff --git a/frontend/src/components/RecentIssues.tsx b/frontend/src/components/RecentIssues.tsx
index 458b3ee4f9..173609a3d4 100644
--- a/frontend/src/components/RecentIssues.tsx
+++ b/frontend/src/components/RecentIssues.tsx
@@ -19,7 +19,7 @@ const RecentIssues: React.FC