fix(salesforce): send link notes and default to empty string (#11160)
This commit is contained in:
parent
7bcf7bb686
commit
649c1b0669
|
@ -26,7 +26,7 @@ export const useSalesforceLinkDialog = () => {
|
||||||
const [ records, setRecords ] = useState([]);
|
const [ records, setRecords ] = useState([]);
|
||||||
const [ isLoading, setLoading ] = useState(false);
|
const [ isLoading, setLoading ] = useState(false);
|
||||||
const [ searchTerm, setSearchTerm ] = useState(null);
|
const [ searchTerm, setSearchTerm ] = useState(null);
|
||||||
const [ notes, setNotes ] = useState(null);
|
const [ notes, setNotes ] = useState('');
|
||||||
const [ hasRecordsErrors, setRecordsErrors ] = useState(false);
|
const [ hasRecordsErrors, setRecordsErrors ] = useState(false);
|
||||||
const [ hasDetailsErrors, setDetailsErrors ] = useState(false);
|
const [ hasDetailsErrors, setDetailsErrors ] = useState(false);
|
||||||
const conference = useSelector(getCurrentConference);
|
const conference = useSelector(getCurrentConference);
|
||||||
|
@ -122,6 +122,7 @@ export const useSalesforceLinkDialog = () => {
|
||||||
executeLinkMeetingRequest,
|
executeLinkMeetingRequest,
|
||||||
hideNotification,
|
hideNotification,
|
||||||
jwt,
|
jwt,
|
||||||
|
notes,
|
||||||
salesforceUrl,
|
salesforceUrl,
|
||||||
selectedRecord,
|
selectedRecord,
|
||||||
showNotification
|
showNotification
|
||||||
|
|
Loading…
Reference in New Issue