import { Trans, useTranslation } from 'react-i18next' import { RowLink } from './row-link' import { Publisher } from '../../../../../../types/subscription/dashboard/publisher' type ManagedPublisherProps = { publisher: Publisher } export default function ManagedPublisher({ publisher }: ManagedPublisherProps) { const { t } = useTranslation() return (

]} // eslint-disable-line react/jsx-key values={{ publisherName: publisher.name || '', }} shouldUnescape tOptions={{ interpolation: { escapeValue: true } }} />


) }