From b8900296a30984435ebeb999aa39d50722d2c32f Mon Sep 17 00:00:00 2001 From: Carson Full Date: Thu, 26 Sep 2024 14:54:10 -0500 Subject: [PATCH] Behind feature flag --- .../Projects/WorkflowEvents/WorkflowEventsIcon.tsx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/scenes/Projects/WorkflowEvents/WorkflowEventsIcon.tsx b/src/scenes/Projects/WorkflowEvents/WorkflowEventsIcon.tsx index edf785dbff..4b8dfa1f97 100644 --- a/src/scenes/Projects/WorkflowEvents/WorkflowEventsIcon.tsx +++ b/src/scenes/Projects/WorkflowEvents/WorkflowEventsIcon.tsx @@ -1,11 +1,14 @@ import { History as HistoryIcon } from '@mui/icons-material'; import { Tooltip } from '@mui/material'; import { IconButton, IconButtonProps } from '~/components/IconButton'; +import { Feature } from '../../../components/Feature'; export const WorkflowEventsIcon = (props: IconButtonProps) => ( - - - - - + + + + + + + );