import { useCallback } from 'react' import { useTranslation, Trans } from 'react-i18next' import { Button } from 'react-bootstrap' import PdfLogEntry from './pdf-log-entry' import { useDetachCompileContext as useCompileContext } from '../../../shared/context/detach-compile-context' import { useStopOnFirstError } from '../../../shared/hooks/use-stop-on-first-error' export default function StopOnFirstErrorPrompt() { const { t } = useTranslation() const { startCompile, setAnimateCompileDropdownArrow } = useCompileContext() const { disableStopOnFirstError } = useStopOnFirstError({ eventSource: 'logs-pane', }) const handleDisableButtonClick = useCallback(() => { disableStopOnFirstError() startCompile({ stopOnFirstError: false }) setAnimateCompileDropdownArrow(true) }, [disableStopOnFirstError, startCompile, setAnimateCompileDropdownArrow]) return ( ]} />{' '} } level="info" /> ) }