From 2a5419a81cef4e9ccfd94919c625a6787790024b Mon Sep 17 00:00:00 2001 From: Dereck Lam Hon Wah Date: Mon, 26 Aug 2024 08:19:58 +0400 Subject: [PATCH 1/2] fix: filter the user github-actions[bot] from the contributors list on frontend --- packages/frontendmu-nuxt/pages/team.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/frontendmu-nuxt/pages/team.vue b/packages/frontendmu-nuxt/pages/team.vue index 0d3e0065..dc229f80 100644 --- a/packages/frontendmu-nuxt/pages/team.vue +++ b/packages/frontendmu-nuxt/pages/team.vue @@ -11,6 +11,7 @@ interface Contributor { const contributors: Contributor[] = Contributors const NuxtLink = resolveComponent('NuxtLink') +const displayContributors = computed(() => contributors?.filter((c: Contributor) => c.username !== 'github-actions[bot]')) || []