diff --git a/app/soapbox/features/forms/index.js b/app/soapbox/features/forms/index.js
index 24857c33f..471a173f8 100644
--- a/app/soapbox/features/forms/index.js
+++ b/app/soapbox/features/forms/index.js
@@ -70,7 +70,7 @@ LabelInput.propTypes = {
export const LabelTextarea = ({ label, dispatch, ...props }) => (
-
+
);
diff --git a/app/soapbox/features/landing_page/components/registration_form.js b/app/soapbox/features/landing_page/components/registration_form.js
index 2b172910c..0d6a9db71 100644
--- a/app/soapbox/features/landing_page/components/registration_form.js
+++ b/app/soapbox/features/landing_page/components/registration_form.js
@@ -9,6 +9,7 @@ import {
SimpleForm,
SimpleInput,
TextInput,
+ SimpleTextarea,
Checkbox,
} from 'soapbox/features/forms';
import { register } from 'soapbox/actions/auth';
@@ -24,7 +25,6 @@ const messages = defineMessages({
confirm: { id: 'registration.fields.confirm_placeholder', defaultMessage: 'Password (again)' },
agreement: { id: 'registration.agreement', defaultMessage: 'I agree to the {tos}.' },
tos: { id: 'registration.tos', defaultMessage: 'Terms of Service' },
- reason: { id: 'registration.reason', defaultMessage: 'Reason for Joining' },
});
const mapStateToProps = (state, props) => ({
@@ -138,8 +138,9 @@ class RegistrationForm extends ImmutablePureComponent {
required
/>
{instance.get('approval_required') &&
- }
+ hint={}
name='reason'
maxLength={500}
autoComplete='off'