Skip to content

Commit

Permalink
appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
daibhin committed Oct 2, 2024
1 parent 58d7c23 commit 35b92ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/error-tracking/errorTrackingLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const errorTrackingLogic = kea<errorTrackingLogicType>([
selectors({
hasGroupActions: [
(s) => [s.featureFlags],
(featureFlags): boolean => featureFlags[FEATURE_FLAGS.ERROR_TRACKING_GROUP_ACTIONS],
(featureFlags): boolean => !!featureFlags[FEATURE_FLAGS.ERROR_TRACKING_GROUP_ACTIONS],
],
}),
listeners(({ values, actions }) => ({
Expand Down

0 comments on commit 35b92ee

Please sign in to comment.