overleaf-cep/services/web/frontend/js/features/group-management/components/subtotal-limit-exceeded.tsx
ilkin-overleaf 96af83a4ed Merge pull request #24138 from overleaf/ii-flexible-licensing-colombian-pesos
[web] Recurly subtotal limit on flexible licensing

GitOrigin-RevId: 302fb15dcc360e3b47674e8e776ffa115af6cbe6
2025-03-12 09:04:52 +00:00

25 lines
686 B
TypeScript

import { Trans } from 'react-i18next'
import OLNotification from '@/features/ui/components/ol/ol-notification'
import Card from '@/features/group-management/components/card'
function SubtotalLimitExceeded() {
return (
<Card>
<OLNotification
type="error"
content={
<Trans
i18nKey="sorry_there_was_an_issue_upgrading_your_subscription"
components={[
// eslint-disable-next-line jsx-a11y/anchor-has-content, react/jsx-key
<a href="/contact" rel="noreferrer noopener" />,
]}
/>
}
className="m-0"
/>
</Card>
)
}
export default SubtotalLimitExceeded