diff --git a/webapp/src/app/about/about.component.ts b/webapp/src/app/about/about.component.ts index f28d1c46..c342ad76 100644 --- a/webapp/src/app/about/about.component.ts +++ b/webapp/src/app/about/about.component.ts @@ -30,15 +30,6 @@ export class AboutComponent { gcTime: Infinity })); - private queryArray = computed( - () => - this.query.data()?.map((contributor) => ({ - queryKey: ['contributor', contributor.id], - queryFn: async () => lastValueFrom(this.http.get(contributor.url)) as Promise<{ id: number; name: string }>, - gcTime: Infinity - })) ?? [] - ); - projectManager = computed(() => { const data = this.query.data(); if (!data) {