mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00

[web] Revert "FL manually billed subscription feature flag tear down" GitOrigin-RevId: 7cc809570d310f56b8f9e1a4f43ca895db8a8073
34 lines
986 B
TypeScript
34 lines
986 B
TypeScript
import { Trans, useTranslation } from 'react-i18next'
|
|
import OLNotification from '@/features/ui/components/ol/ol-notification'
|
|
import Card from '@/features/group-management/components/card'
|
|
import useWaitForI18n from '@/shared/hooks/use-wait-for-i18n'
|
|
|
|
function ManuallyCollectedSubscription() {
|
|
const { t } = useTranslation()
|
|
const { isReady } = useWaitForI18n()
|
|
|
|
if (!isReady) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<Card>
|
|
<OLNotification
|
|
type="error"
|
|
title={t('account_billed_manually')}
|
|
content={
|
|
<Trans
|
|
i18nKey="it_looks_like_your_account_is_billed_manually_purchasing_additional_license_or_upgrading_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 ManuallyCollectedSubscription
|