Skip to content

Commit

Permalink
chore: Custom Trigger Type Modal (#3450)
Browse files Browse the repository at this point in the history
  • Loading branch information
xoscar committed Jan 3, 2024
1 parent 3bb85e2 commit 1dab58a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/src/components/TriggerTypeModal/TriggerTypeModal.tsx
Expand Up @@ -3,6 +3,7 @@ import {useDashboard} from 'providers/Dashboard/Dashboard.provider';
import CreateTestAnalytics from 'services/Analytics/CreateTest.service';
import TriggerTypeCard from './TriggerTypeCard';
import * as S from './TriggerTypeModal.styled';
import { withCustomization } from '../../providers/Customization';

const pluginList = Object.values(CreateTriggerTypeToPlugin);

Expand Down Expand Up @@ -42,4 +43,4 @@ const TriggerTypeModal = ({isOpen, onClose}: IProps) => {
);
};

export default TriggerTypeModal;
export default withCustomization(TriggerTypeModal, 'triggerTypeModal');

0 comments on commit 1dab58a

Please sign in to comment.