From 94fe600d5624ff348ef56c8f784af0ffd0ede5d5 Mon Sep 17 00:00:00 2001 From: NoobDeveloper412 Date: Tue, 1 Oct 2024 17:53:44 +0500 Subject: [PATCH] Fixed the core-contributors. --- src/components/AboutFooter.astro | 2 +- src/components/MembersGrid.astro | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/AboutFooter.astro b/src/components/AboutFooter.astro index 7d87fe2..53c7ca6 100644 --- a/src/components/AboutFooter.astro +++ b/src/components/AboutFooter.astro @@ -104,7 +104,7 @@ const sortedSections = sectionsConfig )} diff --git a/src/components/MembersGrid.astro b/src/components/MembersGrid.astro index a10b7e4..ec38a89 100644 --- a/src/components/MembersGrid.astro +++ b/src/components/MembersGrid.astro @@ -5,7 +5,6 @@ const filteredPeople = core ? people.filter((p) => !team.includes(p.id)).filter((p) => p.imageUrl) : team; - console.log(team, core) // Limit the number of members to 12 (2 rows with a max of 6 columns each) const limitedPeople = filteredPeople.slice(0, 12);