Files
Verso/services/web/frontend/js/shared/components/recaptcha-conditions.jsx
T
b345bf9485 [web] Update captcha notice (#32286)
* feat: remove translations

* feat: remove scss

* fix: remove the last translation

* feat: remove pug

* fix: forgotten conditions

* feat: also remove from react

* Revert changes

* Remove links from `recaptcha_conditions`

* Center short reCAPTCHA notice on CIAM screens

* Re-add the Chinese translation

---------

Co-authored-by: Antoine Clausse <antoine.clausse@overleaf.com>
GitOrigin-RevId: 64e7b8a38c2a4b4f7e60d5c9df6740c35b8763d8
2026-04-14 08:05:15 +00:00

7 lines
210 B
React

import { useTranslation } from 'react-i18next'
export default function RecaptchaConditions() {
const { t } = useTranslation()
return <div className="recaptcha-branding">{t('recaptcha_conditions')}</div>
}