Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
Fix issue 309 (#310)
Browse files Browse the repository at this point in the history
* Updated config.yml

* Fix issue 309 on validation about Fullstory
  • Loading branch information
edsonjab authored Mar 15, 2023
1 parent c5ce4be commit 72610e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/node:10
- image: circleci/node:14
steps:
- checkout
- restore_cache:
Expand Down
2 changes: 1 addition & 1 deletion src/consent-manager-builder/fetch-destinations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function fetchDestinationForWriteKey(
// Rename creationName to id to abstract the weird data model
for (const destination of destinations) {
// Because of the legacy Fullstory integration the creationName for this integration is the `name`
if (destination.name === 'Fullstory (Actions)') {
if (destination.name === 'Fullstory') {
destination.id = destination.name
} else {
destination.id = destination.creationName
Expand Down

0 comments on commit 72610e8

Please sign in to comment.