fix(inbox): point Scouts "Learn more" link to a live docs page#2807
Merged
Conversation
The Scouts source toggle in Self-driving settings linked to https://posthog.com/docs/self-driving, which returns HTTP 404. Users setting up Scouts clicked "Learn more about Scouts" and landed on a dead page (10 distinct users over the last 14 days). Repoint the link to https://posthog.com/blog/self-driving-product, which resolves correctly and explains the Self-driving product that Scouts are part of. This URL is already used by ConfigureAgentsSection in the same feature area. Grep confirms this was the only remaining reference to the /docs/self-driving path. Generated-By: PostHog Code Task-Id: 282e4bb2-731f-4740-a4c3-5371386eb828
|
React Doctor found no issues in the changed files. 🎉 Reviewed by React Doctor for commit |
Contributor
|
Reviews (1): Last reviewed commit: "fix(inbox): point Scouts "Learn more" li..." | Re-trigger Greptile |
andrewm4894
approved these changes
Jun 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The Scouts source toggle in Self-driving settings rendered a "Learn more about Scouts" link pointing to
https://posthog.com/docs/self-driving, which returns HTTP 404. Users setting up Scouts clicked it and landed on a dead page — 10 distinct users hit it over the last 14 days, with 2 Discord complaints, days before the June 23 Self-driving launch.This repoints the link to
https://posthog.com/blog/self-driving-product, which resolves correctly and describes the Self-driving product that Scouts are part of. That URL is already used byConfigureAgentsSection.tsxin the same feature area.Root cause
packages/ui/src/features/inbox/components/SignalSourceToggles.tsx:373hard-codeddocsUrl="https://posthog.com/docs/self-driving"(introduced in #2639). The target docs page was never published.Verification
https://posthog.com/docs/self-drivingreturns HTTP 404 via direct fetch.https://posthog.com/blog/self-driving-productresolves (title: "PostHog Code and the self-driving product").grepconfirms this was the only remaining code reference to/docs/self-driving.🤖 Generated with Claude Code