Skip to content

Commit

Permalink
Don't throw error on missed project round records
Browse files Browse the repository at this point in the history
  • Loading branch information
aminlatifi committed Sep 30, 2024
1 parent 87bfdf8 commit e334e18
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/resolvers/projectResolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2198,9 +2198,9 @@ export class ProjectResolver {
earlyAccessRoundId,
);

if (!summaries || summaries.length === 0) {
throw new Error(`No donation summaries found for project ${projectId}`);
}
// if (!summaries || summaries.length === 0) {
// throw new Error(`No donation summaries found for project ${projectId}`);
// }

return summaries;
}
Expand Down

0 comments on commit e334e18

Please sign in to comment.