import { Flex, Stack } from '@chakra-ui/react' import { TypingEmulationSettings } from 'bot-engine' import { useTypebot } from 'contexts/TypebotContext' import React from 'react' import { TypingEmulation } from './TypingEmulation' export const SettingsContent = () => { const { typebot, updateSettings } = useTypebot() const handleTypingEmulationUpdate = ( typingEmulation: TypingEmulationSettings ) => { if (!typebot) return updateSettings({ ...typebot.settings, typingEmulation }) } return ( ) }