Skip to content

Commit 7974849

Browse files
fix: remove confusing error log (#1199)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent b6e769e commit 7974849

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/helpers/utils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ export const findModuleFromBase = ({ paths, candidates }): string | null => {
168168
if (modulePath) {
169169
return modulePath
170170
}
171-
} catch (error) {
172-
console.error(error)
171+
} catch {
172+
// Ignore the error
173173
}
174174
}
175175
return null

0 commit comments

Comments
 (0)