🔥 Remove make.com integration block temporarily
This commit is contained in:
@ -149,14 +149,16 @@ export const BlocksSideBar = () => {
|
|||||||
Integrations
|
Integrations
|
||||||
</Text>
|
</Text>
|
||||||
<SimpleGrid columns={2} spacing="3">
|
<SimpleGrid columns={2} spacing="3">
|
||||||
{Object.values(IntegrationBlockType).map((type) => (
|
{Object.values(IntegrationBlockType)
|
||||||
<BlockCard
|
.filter((type) => type !== IntegrationBlockType.MAKE_COM)
|
||||||
key={type}
|
.map((type) => (
|
||||||
type={type}
|
<BlockCard
|
||||||
onMouseDown={handleMouseDown}
|
key={type}
|
||||||
isDisabled={type === IntegrationBlockType.MAKE_COM}
|
type={type}
|
||||||
/>
|
onMouseDown={handleMouseDown}
|
||||||
))}
|
isDisabled={type === IntegrationBlockType.MAKE_COM}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
</SimpleGrid>
|
</SimpleGrid>
|
||||||
</Stack>
|
</Stack>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user