* 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
7 lines
210 B
React
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>
|
|
}
|