From cbaa8bc452270d58887c96f1c32dbb0cbb4efc4b Mon Sep 17 00:00:00 2001 From: Burak Karahan Date: Fri, 3 Jan 2025 03:17:46 +0300 Subject: [PATCH] chore(function): fix lint error --- packages/backend-function/src/provided_function_factory.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/backend-function/src/provided_function_factory.ts b/packages/backend-function/src/provided_function_factory.ts index 2647563ed4..79343cc855 100644 --- a/packages/backend-function/src/provided_function_factory.ts +++ b/packages/backend-function/src/provided_function_factory.ts @@ -95,7 +95,8 @@ class ProvidedFunctionGenerator implements ConstructContainerEntryGenerator { 'CustomFunctionProviderError', { message: e instanceof Error ? e.message : JSON.stringify(e), - resolution: "Ensure that callback passed to 'defineFunction' executes without error. See https://docs.amplify.aws/react/build-a-backend/functions/custom-functions for more details.", + resolution: + "Ensure that callback passed to 'defineFunction' executes without error. See https://docs.amplify.aws/react/build-a-backend/functions/custom-functions for more details.", }, e instanceof Error ? e : undefined );