From a448272620dc416243158cbdd70be6de0440133e Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Fri, 10 Mar 2023 15:25:36 +0100 Subject: [PATCH] fixed build type check --- backend/src/graphql/resolver/util/findContributions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/graphql/resolver/util/findContributions.ts b/backend/src/graphql/resolver/util/findContributions.ts index a3c34cea1..1daa831c4 100644 --- a/backend/src/graphql/resolver/util/findContributions.ts +++ b/backend/src/graphql/resolver/util/findContributions.ts @@ -7,8 +7,8 @@ interface FindContributionsOptions { order: Order currentPage: number pageSize: number - withDeleted?: boolean | null - relations?: string[] | null + withDeleted?: boolean + relations?: string[] userId?: number | null statusFilter?: ContributionStatus[] | null }