Skip to content

Commit

Permalink
fix: fixing display name issues
Browse files Browse the repository at this point in the history
  • Loading branch information
shrouti1507 committed Nov 7, 2024
1 parent 9c207f1 commit 6b20d73
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const DIR_NAME = 'ActiveCampaign';
const NAME = 'ACTIVE_CAMPAIGN';
const DISPLAY_NAME = 'Active Campaign';
const DISPLAY_NAME = 'ActiveCampaign';

Check warning on line 3 in packages/analytics-js-common/src/constants/integrations/ActiveCampaign/constants.js

View check run for this annotation

Codecov / codecov/patch

packages/analytics-js-common/src/constants/integrations/ActiveCampaign/constants.js#L3

Added line #L3 was not covered by tests

const DISPLAY_NAME_TO_DIR_NAME_MAP = { [DISPLAY_NAME]: DIR_NAME };
const CNameMapping = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const DIR_NAME = 'ConvertFlow';
const NAME = 'CONVERTFLOW';
const DISPLAY_NAME = 'ConvertFlow';
const DISPLAY_NAME = 'Convertflow';

Check warning on line 3 in packages/analytics-js-common/src/constants/integrations/ConvertFlow/constants.ts

View check run for this annotation

Codecov / codecov/patch

packages/analytics-js-common/src/constants/integrations/ConvertFlow/constants.ts#L3

Added line #L3 was not covered by tests

const DISPLAY_NAME_TO_DIR_NAME_MAP = { [DISPLAY_NAME]: DIR_NAME };
const CNameMapping = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const DIR_NAME = 'Lemnisk';
const NAME = 'LEMNISK';
const DISPLAY_NAME = 'Lemnisk';
const DISPLAY_NAME = 'Lemnisk Marketing Automation';

Check warning on line 3 in packages/analytics-js-common/src/constants/integrations/Lemnisk/constants.ts

View check run for this annotation

Codecov / codecov/patch

packages/analytics-js-common/src/constants/integrations/Lemnisk/constants.ts#L3

Added line #L3 was not covered by tests

const DISPLAY_NAME_TO_DIR_NAME_MAP = { [DISPLAY_NAME]: DIR_NAME };
const CNameMapping = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const DIR_NAME = 'LiveChat';
const NAME = 'LIVECHAT';
const DISPLAY_NAME = 'LiveChat';
const DISPLAY_NAME = 'livechat';

Check warning on line 3 in packages/analytics-js-common/src/constants/integrations/LiveChat/constants.ts

View check run for this annotation

Codecov / codecov/patch

packages/analytics-js-common/src/constants/integrations/LiveChat/constants.ts#L3

Added line #L3 was not covered by tests

const DISPLAY_NAME_TO_DIR_NAME_MAP = { [DISPLAY_NAME]: DIR_NAME };
const CNameMapping = {
Expand Down

0 comments on commit 6b20d73

Please sign in to comment.