From 66496f53329dc20201ab938a28018b5fe952957b Mon Sep 17 00:00:00 2001 From: Ildar Nurislamov Date: Tue, 28 Nov 2023 11:30:12 +0400 Subject: [PATCH] build fix --- libs/core-functions/src/context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/core-functions/src/context.ts b/libs/core-functions/src/context.ts index 50aa3d6b9..290c155d5 100644 --- a/libs/core-functions/src/context.ts +++ b/libs/core-functions/src/context.ts @@ -49,7 +49,7 @@ export function createFullContext( let fetchResult: any = undefined; try { fetchResult = await nodeFetch(url, internalInit); - } catch (err) { + } catch (err: any) { if (err.name === "AbortError") { err.message = `Fetch request exceeded timeout ${timeout}ms and was aborted`; }