2
0

feat(editor): 💄 Make steps side bar scrollable

This commit is contained in:
Baptiste Arnaud
2022-02-17 08:01:57 +01:00
parent 00c35886a4
commit f7d6f0b766
2 changed files with 3 additions and 1 deletions

View File

@@ -91,11 +91,12 @@ export const StepsSideBar = () => {
shadow="xl"
borderWidth="1px"
pt="2"
pb="4"
pb="10"
px="2"
bgColor="gray.50"
spacing={6}
userSelect="none"
overflowY="scroll"
>
<Flex justifyContent="flex-end">
<Tooltip label={isLocked ? 'Unlock sidebar' : 'Lock sidebar'}>

View File

@@ -89,6 +89,7 @@ const executeWebhook = async (
data: parseBody(error.response.body as string),
}
}
console.error(error)
return {
statusCode: 500,
data: { message: `Error from Typebot server: ${error}` },