import { useCallback } from 'react'
import { Trans, useTranslation } from 'react-i18next'
import OLButton from '@/features/ui/components/ol/ol-button'
import { useDetachCompileContext as useCompileContext } from '../../../shared/context/detach-compile-context'
import { useStopOnFirstError } from '../../../shared/hooks/use-stop-on-first-error'
import MaterialIcon from '@/shared/components/material-icon'
import PdfLogEntry from '@/features/pdf-preview/components/pdf-log-entry'
function PreviewLogsPaneMaxEntries({
totalEntries,
entriesShown,
hasErrors,
}: {
totalEntries: number
entriesShown: number
hasErrors?: boolean
}) {
const { t } = useTranslation()
const title = t('log_entry_maximum_entries_title', {
total: totalEntries,
displayed: entriesShown,
})
return (
{t('log_entry_maximum_entries_see_full_logs')}
> ) } return (