diff --git a/client/src/telemetry/constants.ts b/client/src/telemetry/constants.ts index cebf6740e83a..18042dcd2cd4 100644 --- a/client/src/telemetry/constants.ts +++ b/client/src/telemetry/constants.ts @@ -21,6 +21,7 @@ export const TOGGLE_PLUS_AI_HELP_HISTORY_ENABLED = export const BANNER_BLOG_LAUNCH_CLICK = "banner_blog_launch_click"; export const AI_HELP = "ai_help"; export const BANNER_AI_HELP_CLICK = "banner_ai_help_click"; +export const BANNER_SCRIMBA_CLICK = "banner_scrimba_click"; export const PLAYGROUND = "play_action"; export const AI_EXPLAIN = "ai_explain"; export const SETTINGS = "settings"; diff --git a/client/src/ui/organisms/placement/index.tsx b/client/src/ui/organisms/placement/index.tsx index 53d4662e90e9..53850d0fcf4c 100644 --- a/client/src/ui/organisms/placement/index.tsx +++ b/client/src/ui/organisms/placement/index.tsx @@ -10,7 +10,7 @@ import "./index.scss"; import { useGleanClick } from "../../../telemetry/glean-context"; import { Status, usePlacement } from "../../../placement-context"; import { Payload as PlacementData } from "../../../../../libs/pong/types"; -import { BANNER_AI_HELP_CLICK } from "../../../telemetry/constants"; +import { BANNER_SCRIMBA_CLICK } from "../../../telemetry/constants"; interface Timer { timeout: number | null; @@ -94,16 +94,18 @@ function TopPlacementFallbackContent() { return (
- Get real-time assistance with your coding queries. Try{" "} + Learn front-end development with high quality, interactive courses from{" "} { - gleanClick(BANNER_AI_HELP_CLICK); + gleanClick(BANNER_SCRIMBA_CLICK); }} > - AI Help - {" "} - now! + Scrimba + + . Enroll now!
); }