Skip to content

Commit

Permalink
fix(3000): Fully roll Notebooks out in 3000 (#19145)
Browse files Browse the repository at this point in the history
fix(3000): Fully roll Notebooks out in 3000 the simple way

Co-authored-by: Cory Watilo <[email protected]>
  • Loading branch information
Twixes and corywatilo authored Dec 6, 2023
1 parent aaadc4d commit f23e0f3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontend/src/layout/navigation-3000/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { useMountedLogic, useValues } from 'kea'
import { CommandPalette } from 'lib/components/CommandPalette/CommandPalette'
import { FlaggedFeature } from 'lib/components/FlaggedFeature'
import { FEATURE_FLAGS } from 'lib/constants'
import posthog from 'posthog-js'
import { ReactNode, useEffect } from 'react'
import { SceneConfig } from 'scenes/sceneTypes'

Expand All @@ -31,6 +32,8 @@ export function Navigation({
useEffect(() => {
// FIXME: Include debug notice in a non-obstructing way
document.getElementById('bottom-notice')?.remove()
// TODO: Unflag Notebooks once the 3000 experiment is over
posthog.updateEarlyAccessFeatureEnrollment(FEATURE_FLAGS.NOTEBOOKS, true)
}, [])

if (mode !== 'full') {
Expand Down

0 comments on commit f23e0f3

Please sign in to comment.