From 16089ac808e519188431167c84a861377c996c89 Mon Sep 17 00:00:00 2001 From: Matt Kane Date: Mon, 7 Feb 2022 06:27:31 -0800 Subject: [PATCH] fix: remove confusing error log --- src/helpers/utils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/helpers/utils.ts b/src/helpers/utils.ts index f4a94ab5df..17cdc49f8f 100644 --- a/src/helpers/utils.ts +++ b/src/helpers/utils.ts @@ -168,8 +168,8 @@ export const findModuleFromBase = ({ paths, candidates }): string | null => { if (modulePath) { return modulePath } - } catch (error) { - console.error(error) + } catch { + // Ignore the error } } return null