2
0

🔥 Remove make.com integration block temporarily

This commit is contained in:
Baptiste Arnaud
2022-11-29 10:23:08 +01:00
parent bf0d0c2475
commit 013c225296

View File

@ -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>