Skip to content

Commit 87e0640

Browse files
committed
Fix null/undefined name issue
1 parent fed20cb commit 87e0640

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

componentDetection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default class ComponentDetection {
9393
packages.forEach(async (pkg: ComponentDetectionPackage) => {
9494
pkg.locationsFoundAt.forEach(async (location: any) => {
9595
if (!manifests[location.filePath]) {
96-
const manifest = new Manifest(location.filePath, location.filePath);
96+
const manifest = new Manifest(location, location);
9797
manifests.push(manifest);
9898
}
9999
if (pkg.topLevelReferrers.length == 0) {

0 commit comments

Comments
 (0)