Skip to content

Commit

Permalink
Use the error tracking feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
robbie-c committed Aug 8, 2024
1 parent 8ac4ed1 commit a266f23
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion frontend/src/lib/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,6 @@ export const FEATURE_FLAGS = {
FIRST_TIME_FOR_USER_MATH: 'first-time-for-user-math', // owner: @skoob13 #team-product-analytics
MULTITAB_EDITOR: 'multitab-editor', // owner: @EDsCODE #team-data-warehouse
WEB_ANALYTICS_REPLAY: 'web-analytics-replay', // owner: @robbie-c
WEB_ANALYTICS_ERROR_TRACKING: 'web-analytics-error-tracking', // owner: @robbie-c
} as const
export type FeatureFlagKey = (typeof FEATURE_FLAGS)[keyof typeof FEATURE_FLAGS]

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/scenes/web-analytics/webAnalyticsLogic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,7 @@ export const webAnalyticsLogic = kea<webAnalyticsLogicType>([
},
}
: null,
featureFlags[FEATURE_FLAGS.WEB_ANALYTICS_ERROR_TRACKING]
featureFlags[FEATURE_FLAGS.ERROR_TRACKING]
? {
kind: 'error_tracking',
tileId: TileId.ERROR_TRACKING,
Expand Down

0 comments on commit a266f23

Please sign in to comment.