diff --git a/app/soapbox/features/auth_login/components/captcha.tsx b/app/soapbox/features/auth_login/components/captcha.tsx index ea9f1e3a1..dcd51209c 100644 --- a/app/soapbox/features/auth_login/components/captcha.tsx +++ b/app/soapbox/features/auth_login/components/captcha.tsx @@ -3,7 +3,7 @@ import React, { useState, useEffect } from 'react'; import { useIntl, defineMessages, FormattedMessage } from 'react-intl'; import { fetchCaptcha } from 'soapbox/actions/auth'; -import { Text, Input } from 'soapbox/components/ui'; +import { Stack, Text, Input } from 'soapbox/components/ui'; import { useAppDispatch } from 'soapbox/hooks'; const noOp = () => {}; @@ -106,8 +106,10 @@ const NativeCaptchaField: React.FC = ({ captcha, onChange, const intl = useIntl(); return ( -
- captcha + +
+ captcha +
= ({ captcha, onChange, onChange={onChange} required /> -
+ ); };