♻️ Change overflow:scroll to overflow:auto

This commit is contained in:
Baptiste Arnaud
2024-01-25 16:35:16 +01:00
parent 0f245b8e57
commit ab010657b2
29 changed files with 28 additions and 55 deletions

View File

@@ -27,13 +27,7 @@ export const ApiPreviewInstructions = (props: StackProps) => {
}`
return (
<Stack
spacing={10}
overflowY="scroll"
className="hide-scrollbar"
w="full"
{...props}
>
<Stack spacing={10} overflowY="auto" w="full" {...props}>
<OrderedList spacing={6} px="1">
<ListItem>
All your requests need to be authenticated with an API token.{' '}

View File

@@ -68,8 +68,7 @@ export const WhatsAppPreviewInstructions = (props: StackProps) => {
<Stack
as="form"
spacing={4}
overflowY="scroll"
className="hide-scrollbar"
overflowY="auto"
w="full"
px="1"
onSubmit={sendWhatsAppPreviewStartMessage}