Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
utsabc committed Jun 23, 2021
1 parent 0bdc01b commit 9dd7adc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion integrations/LinkedInPixel/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import logger from "../../utils/logUtil";
import ScriptLoader from "../ScriptLoader";
class LinkedInPixel{
constructor(config){
this.name="LINKEDINPIXEL";
this.name="LINKEDIN_PIXEL";
this.partnerId=config.partnerId;
}
init() {
Expand Down
2 changes: 1 addition & 1 deletion integrations/client_server_name.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const clientToServerNames = {
CLEVERTAP: "Clevertap",
BINGADS: "BingAds",
PINTEREST_TAG: "PinterestTag",
LINKEDINPIXEL: "LinkedinPixel"
LINKEDIN_PIXEL: "LinkedinPixel"
};

export { clientToServerNames };
4 changes: 2 additions & 2 deletions integrations/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import * as Clevertap from "./Clevertap";
import * as BingAds from "./BingAds";
import * as PinterestTag from "./PinterestTag";
import * as AdobeAnalytics from "./AdobeAnalytics";
import * as LinkedInPixel from "./LinkedInPixel"
import * as LinkedInPixel from "./LinkedInPixel";

// the key names should match the destination.name value to keep partity everywhere
// (config-plan name, native destination.name , exported integration name(this one below))
Expand Down Expand Up @@ -66,7 +66,7 @@ const integrations = {
BINGADS: BingAds.default,
PINTEREST_TAG: PinterestTag.default,
ADOBE_ANALYTICS: AdobeAnalytics.default,
LINKEDINPIXEL: LinkedInPixel.default,
LINKEDIN_PIXEL: LinkedInPixel.default,
};

export { integrations };

0 comments on commit 9dd7adc

Please sign in to comment.