From dfbdeaddafc2cbefc2bfe5f9d4e8246e90a92368 Mon Sep 17 00:00:00 2001 From: balibabu Date: Wed, 18 Dec 2024 14:07:56 +0800 Subject: [PATCH] Fix: Fixed the issue where the required information in the input box was incorrect when inviting users #2834 (#4086) ### 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) --- web/src/pages/user-setting/setting-team/add-user-modal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/pages/user-setting/setting-team/add-user-modal.tsx b/web/src/pages/user-setting/setting-team/add-user-modal.tsx index 5adc43e618c..5a251dfaf39 100644 --- a/web/src/pages/user-setting/setting-team/add-user-modal.tsx +++ b/web/src/pages/user-setting/setting-team/add-user-modal.tsx @@ -40,7 +40,7 @@ const AddingUserModal = ({ label={t('setting.email')} name="email" - rules={[{ required: true, message: t('namePlaceholder') }]} + rules={[{ required: true }]} >