Closed lorisleiva closed 3 months ago
Latest commit: cb9a3ca53a8d9d2fafdd412ff518fd5e273a1e58
The changes in this PR will be included in the next version bump.
Not sure what this means? Click here to learn what changesets are.
Click here if you're a maintainer who wants to add another changeset to this PR
Currently, if you pass the same
ImportMap
to two fragments using thefragment
function, each of these separate fragments will reference the sameImportMap
instance. This causes other bugs as, when we update the imports of one fragments, we end up updating the imports of another.This PR fixes this by cloning the
ImportMap
when creating a new fragment.