diff --git a/src/strategies/poap/index.ts b/src/strategies/poap/index.ts index 51d409ead..c62d5adc6 100644 --- a/src/strategies/poap/index.ts +++ b/src/strategies/poap/index.ts @@ -90,6 +90,10 @@ export async function strategy( }) ); + if (results.some((result) => result.status === 'rejected')) { + throw new Error(`Error fetching data in poap strategy`); + } + for (const supplyResponse of results) { if (supplyResponse.status === 'rejected') continue;