Skip to content

Commit

Permalink
feat(web-analytics): Change web alpha to beta (#18523)
Browse files Browse the repository at this point in the history
Change web alpha to beta, and remove github issue link
  • Loading branch information
robbie-c authored Nov 9, 2023
1 parent 618f55f commit f3e674a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion frontend/src/layout/navigation-3000/navigationLogic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ export const navigation3000Logic = kea<navigation3000LogicType>([
label: 'Web analytics',
icon: <IconPieChart />,
to: isUsingSidebar ? undefined : urls.webAnalytics(),
tag: 'alpha' as const,
tag: 'beta' as const,
}
: null,
{
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/layout/navigation/SideBar/SideBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ function Pages(): JSX.Element {
icon={<IconWeb />}
identifier={Scene.WebAnalytics}
to={urls.webAnalytics()}
highlight="alpha"
highlight="beta"
/>
</FlaggedFeature>
<PageButton icon={<IconRecording />} identifier={Scene.Replay} to={urls.replay()} />
Expand Down
8 changes: 2 additions & 6 deletions frontend/src/scenes/web-analytics/WebAnalyticsNotice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { supportLogic } from 'lib/components/Support/supportLogic'
import { preflightLogic } from 'scenes/PreflightCheck/preflightLogic'
import { LemonBanner } from 'lib/lemon-ui/LemonBanner'
import { Link } from 'lib/lemon-ui/Link'
import { IconBugReport, IconFeedback, IconGithub } from 'lib/lemon-ui/icons'
import { IconBugReport, IconFeedback } from 'lib/lemon-ui/icons'

export const WebAnalyticsNotice = (): JSX.Element => {
const { openSupportForm } = useActions(supportLogic)
Expand All @@ -13,7 +13,7 @@ export const WebAnalyticsNotice = (): JSX.Element => {

return (
<LemonBanner type={'info'}>
<p>PostHog Web Analytics is in closed Alpha. Thanks for taking part! We'd love to hear what you think.</p>
<p>PostHog Web Analytics is in opt-in Beta. Thanks for taking part! We'd love to hear what you think.</p>
{showSupportOptions ? (
<p>
<Link onClick={() => openSupportForm('bug')}>
Expand All @@ -22,10 +22,6 @@ export const WebAnalyticsNotice = (): JSX.Element => {
-{' '}
<Link onClick={() => openSupportForm('feedback')}>
<IconFeedback /> Give feedback
</Link>{' '}
-{' '}
<Link to={'https://github.com/PostHog/posthog/issues/18177'}>
<IconGithub /> View GitHub issue
</Link>
</p>
) : null}
Expand Down

0 comments on commit f3e674a

Please sign in to comment.