Skip to content

Commit

Permalink
Fix missing type in bundle uniquekey
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcompiles committed Oct 18, 2023
1 parent 40d2566 commit 6cbb16d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bundlers/default/src/DefaultBundler.js
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ function createIdealGraph(
manualSharedMap.set(manualSharedBundleKey, bundleId);
}
bundle.manualSharedBundle = manualSharedObject.name;
bundle.uniqueKey = manualSharedObject.name;
bundle.uniqueKey = manualSharedObject.name + childAsset.type;
}
}

Expand Down

0 comments on commit 6cbb16d

Please sign in to comment.