89af749b94
**Description** Fixes the "Add new" button appearing in relation picker dropdowns for workspace member relations (e.g., Account Owner on companies). Workspace members cannot be created from relation pickers, so this button should not appear. **Changes Made** - Modified RelationManyToOneFieldInput.tsx to conditionally pass the onCreate prop to SingleRecordPicker only when createNewRecordAndOpenRightDrawer is defined. - Moved the conditional check to the JSX level for clarity. **Technical Details** The useAddNewRecordAndOpenRightDrawer hook already returns undefined for workspace member relations, but the component was still passing a handler function to SingleRecordPicker, causing the "Add new" button to appear. The fix ensures that when createNewRecordAndOpenRightDrawer is undefined, onCreate is also undefined, which prevents SingleRecordPickerMenuItemsWithSearch from rendering the button. Testing - Verified that the "Add new" button no longer appears in the Account Owner dropdown for companies. - Confirmed that the "Add new" button still appears for other relation fields where it's appropriate (e.g., People, Opportunities). - Tested that existing functionality for selecting workspace members from the dropdown still works correctly. Fixes #17060