Skip to content

Commit 72d0380

Browse files
Clean up
1 parent e5e9c40 commit 72d0380

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/mparticle-instance-manager.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ if (!Array.isArray) {
2727
Array.prototype.isArray = Polyfill.isArray;
2828
}
2929

30-
3130
// Question: Should we just change this to mParticleInsanceManager?
3231
export default function mParticle(this: IMParticleInstanceManager, instanceName?: string) {
3332
var self = this;
@@ -79,8 +78,9 @@ export default function mParticle(this: IMParticleInstanceManager, instanceName?
7978
if (client === undefined) {
8079

8180
// FIXME: This is not an accurate signature for the constructor
82-
// client = new mParticleInstance(apiKey, config, instanceName);
83-
client = new mParticleInstance(instanceName);
81+
// @ts-ignore
82+
client = new mParticleInstance(apiKey, config, instanceName);
83+
// client = new mParticleInstance(instanceName);
8484
self._instances[instanceName] = client;
8585
}
8686

0 commit comments

Comments
 (0)