'use client'; import { useTranslation } from '../../i18n/useTranslation'; import React from 'react' import { PROFILE_TOKENS } from './styleTokens' export default function MediaSection({ documents }: { documents: any[] }) { const { t } = useTranslation(); const hasDocuments = Array.isArray(documents) && documents.length > 0; return (

{t('autofix.ked7d533b')}

{hasDocuments ? ( {documents.map(doc => ( ))}
Name Type Uploaded
{doc.name} {doc.type} {doc.uploaded} {doc.signedUrl ? ( <> Download Preview ) : ( {t('autofix.kb3243742')} )}
) : (
{t('autofix.k60b1e339')}
)}
) }