Skip to content

Commit

Permalink
fix(experiments): consistent naming (#9055)
Browse files Browse the repository at this point in the history
* fix(experiments): Make sure lists update without refreshes, and clicking on all experiments doesnt make experiments vanish

* fix(experiments): consistent naming

* address comment
  • Loading branch information
neilkakkar committed Mar 16, 2022
1 parent 96aa9b6 commit 8379b92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions frontend/src/scenes/experiments/Experiments.tsx
Expand Up @@ -20,7 +20,6 @@ import { LemonSpacer } from 'lib/components/LemonRow'
import { LemonTag } from 'lib/components/LemonTag/LemonTag'
import { userLogic } from 'scenes/userLogic'
import { PayGatePage } from 'lib/components/PayGatePage/PayGatePage'
import { IconOpenInNew } from 'lib/components/icons'

export const scene: SceneExport = {
component: Experiments,
Expand Down Expand Up @@ -144,7 +143,7 @@ export function Experiments(): JSX.Element {
marginBottom: '1rem',
}}
>
If you're confused, check out our
Check out our
<a
data-attr="experiment-help"
href="https://posthog.com/docs/user-guides/experimentation?utm_medium=in-product&utm_campaign=new-experiment"
Expand All @@ -153,8 +152,8 @@ export function Experiments(): JSX.Element {
>
{' '}
Experimentation user guide
<IconOpenInNew style={{ marginLeft: 4, fontSize: '0.85em' }} />
</a>
</a>{' '}
to learn more.
</div>
<Tabs
activeKey={tab}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/scenes/scenes.ts
Expand Up @@ -92,7 +92,7 @@ export const sceneConfigurations: Partial<Record<Scene, SceneConfig>> = {
},
[Scene.Experiments]: {
projectBased: true,
name: 'Experiments',
name: 'Experimentation',
},
[Scene.Experiment]: {
projectBased: true,
Expand Down

0 comments on commit 8379b92

Please sign in to comment.