From a4ae71c904417a70326140133653d2f63e1bfefd Mon Sep 17 00:00:00 2001 From: Karin Hendrikse <30577427+khendrikse@users.noreply.github.com> Date: Fri, 1 May 2026 10:56:42 +0200 Subject: [PATCH] fix: filter out more user error messages --- site/netlify/functions/error-reporting.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/site/netlify/functions/error-reporting.ts b/site/netlify/functions/error-reporting.ts index 8b63eacd16f..ba179f8f1ff 100755 --- a/site/netlify/functions/error-reporting.ts +++ b/site/netlify/functions/error-reporting.ts @@ -11,6 +11,10 @@ const USER_INPUT_ERROR_MESSAGE_PATTERNS: string[] = [ 'When resolving config file', 'NETLIFY_AUTH_TOKEN is not set', 'Project not found. Please rerun', + 'Not authorized to view the currently linked project', + 'could not retrieve project', + "You don't appear to be in a folder that is linked to a project", + 'EADDRINUSE: address already in use', ] const isUserInputError = (message: unknown): boolean =>