diff --git a/app/soapbox/features/edit_profile/index.tsx b/app/soapbox/features/edit_profile/index.tsx index 97396cd33..c1bde6d1b 100644 --- a/app/soapbox/features/edit_profile/index.tsx +++ b/app/soapbox/features/edit_profile/index.tsx @@ -134,6 +134,7 @@ interface IProfileField { } const ProfileField: React.FC = ({ value, onChange }) => { + const intl = useIntl(); const handleChange = (key: string): React.ChangeEventHandler => { return e => { @@ -143,8 +144,20 @@ const ProfileField: React.FC = ({ value, onChange }) => { return ( - - + + ); };