Skip to content

Commit 0b93005

Browse files
committed
feat: remove operation type tag
1 parent ecc37f8 commit 0b93005

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/workflow-nodes/drawer/steps/SelectWorkflowNode.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ArrowLeftOutlined } from '@ant-design/icons'
22
import { gql } from '@apollo/client'
33
import { Input, List, Tag, Typography } from 'antd'
44
import { useState } from 'react'
5-
import { IntegrationAction, IntegrationTrigger, OperationCategory, OperationType } from '../../../../graphql'
5+
import { IntegrationAction, IntegrationTrigger, OperationCategory } from '../../../../graphql'
66
import { capitalize } from '../../../../src/utils/strings'
77

88
interface Props<T extends IntegrationTrigger | IntegrationAction> {
@@ -105,9 +105,9 @@ export function SelectWorkflowNode<T extends IntegrationTrigger | IntegrationAct
105105
) : nodeType === 'action' ? (
106106
<>
107107
{capitalize(node.name)}{' '}
108-
<Tag color="gold" style={{ marginLeft: 8 }}>
108+
{/* <Tag color="gold" style={{ marginLeft: 8 }}>
109109
{(node as IntegrationAction).type === OperationType.OffChain ? 'Off-Chain' : 'On-Chain'}
110-
</Tag>
110+
</Tag> */}
111111
</>
112112
) : (
113113
capitalize(node.name)

0 commit comments

Comments
 (0)