Skip to content

Commit 632c40f

Browse files
Fixing the snippet.md
There was an extra ';' in the provided snippet, causing the code not to work as expected. I've removed it to ensure that customers copying the snippet won't encounter this issue again.
1 parent 2264573 commit 632c40f

File tree

1 file changed

+1
-1
lines changed
  • src/connections/destinations/catalog/optimizely-web

1 file changed

+1
-1
lines changed

src/connections/destinations/catalog/optimizely-web/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ More importantly, to send the true referrer value with the initial `page` call i
241241
if (window.optimizelyEffectiveReferrer) var referrer = window.optimizelyEffectiveReferrer;
242242

243243
// If they did, override the document.referrer
244-
referrer ? analytics.page({ referrer: referrer }); : analytics.page();
244+
referrer ? analytics.page({ referrer: referrer }): analytics.page();
245245
/* MODIFIED SECTION */
246246

247247
}}();

0 commit comments

Comments
 (0)