We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Object.values()
1 parent bcae395 commit efd9a45Copy full SHA for efd9a45
packages/core/src/integration.ts
@@ -40,7 +40,7 @@ function filterDuplicates(integrations: Integration[]): Integration[] {
40
integrationsByName[name] = currentInstance;
41
});
42
43
- return Object.values(integrationsByName);
+ return Object.keys(integrationsByName).map(k => integrationsByName[k]);
44
}
45
46
/** Gets integrations to install */
0 commit comments