Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def get_pixel_website_trackers() -> list[rx.Component]:
The component.
"""
return [
*get_google_analytics_trackers(tracking_id="G-4T7C8ZD9TR"),
*get_google_analytics_trackers(tracking_id="AW-18175470538"),
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Google Ads ID passed to Analytics tracker

The new ID AW-18175470538 uses the AW- prefix, which identifies a Google Ads property (conversion linker / remarketing tag), whereas the previous ID G-4T7C8ZD9TR was a GA4 Analytics measurement ID (G- prefix). Passing a Google Ads ID to get_google_analytics_trackers may silently drop pageview/analytics events since that function is likely configured specifically to emit gtag('config', ...) calls suitable for GA4. GA4 analytics collection would be lost entirely. If the intent is to replace GA4 with a Google Ads tag, a dedicated function or a rename of the call site would make the intent explicit and avoid the mismatch.

gtag_report_conversion(
conversion_id_and_label="AW-11360851250/ASB4COvpisIbELKqo6kq"
),
Expand Down
Loading