Skip to content

Commit

Permalink
To be reverted - force review apps to use deployed QA env
Browse files Browse the repository at this point in the history
  • Loading branch information
haworku committed Oct 7, 2024
1 parent 2e2f37c commit 3013610
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/app-web/src/tealium/tealium.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const tealiumClient = (tealiumEnv: Omit<TealiumEnv, 'dev'>): TealiumClientType =

// Load utag.sync.js - add to head element - SYNC load from src
const initializeTagManagerSnippet = createScript({
src: `https://${tealiumHostname}/${tealiumProfile}/${tealiumEnv}/utag.sync.js`,
src: `https://${tealiumHostname}/${tealiumProfile}/qa/utag.sync.js`,
id: 'tealium-load-tags-sync',
})

Expand All @@ -32,7 +32,7 @@ const tealiumClient = (tealiumEnv: Omit<TealiumEnv, 'dev'>): TealiumClientType =
}

// Load utag.js - Add to body element- ASYNC load inline script
const inlineScript = `//${tealiumHostname}/${tealiumProfile}/${tealiumEnv}/utag.js`
const inlineScript = `//${tealiumHostname}/${tealiumProfile}/qa/utag.js`

const loadTagsSnippet = createScript({
src: '',
Expand Down

0 comments on commit 3013610

Please sign in to comment.