### What problem does this PR solve? Fix: Fixed the issue where the required information in the input box was incorrect when inviting users #2834 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)tags/v0.15.0
| @@ -40,7 +40,7 @@ const AddingUserModal = ({ | |||
| <Form.Item<FieldType> | |||
| label={t('setting.email')} | |||
| name="email" | |||
| rules={[{ required: true, message: t('namePlaceholder') }]} | |||
| rules={[{ required: true }]} | |||
| > | |||
| <Input /> | |||
| </Form.Item> | |||