We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f79d10 commit ff47290Copy full SHA for ff47290
clients/trieve-shopify-extension/app/processors/getProducts.ts
@@ -335,8 +335,9 @@ export async function sendChunksFromWebhook(
335
);
336
});
337
338
+ let dataChunksResolved: ChunkReqPayload[] = [];
339
try {
- let dataChunksResolved = await Promise.all(dataChunks);
340
+ dataChunksResolved = await Promise.all(dataChunks);
341
} catch (e) {
342
console.error(`Error getting chunks to send to Trieve: ${e}`);
343
}
0 commit comments